Anton Stoychev

Results 30 comments of Anton Stoychev

Hi guys, I know this is an old thread but I've been working on a router that allows named routes and generating back a URL by route name and parameters....

I am facing the same issue. Running phantomjs itself works. Tested it by doing a screenshot: ``` var page = require('webpage').create(); page.open('http://github.com/', function() { page.render('github.png'); phantom.exit(); }); ```

How can we get more debug info?

I've raised karma's `logLevel` to `config.LOG_DEBUG` and also set `debug` to true in a custom phantomjs launcher. I see the command that phantomjs is run is: ``` /mnt/c/MY_RPOJECT/node_modules/phantomjs-prebuilt/lib/phantom/bin/phantomjs --load-images=true --remote-debugger-port=9000...

Further, digging in, I am running my tests in one terminal (`npm run tests`) and running `/mnt/c/MY_RPOJECT/node_modules/phantomjs-prebuilt/lib/phantom/bin/phantomjs --load-images=true --remote-debugger-port=9000 --remote-debugger-autorun=yes /tmp/karma-69611971/capture.js` in another terminal. I am doing this because as...

Further info. I switched the `--debug` flag on phantomjs: ``` 2016-10-19T15:31:16 [DEBUG] CookieJar - Created but will not store cookies (use option '--cookies-file=' to enable persistent cookie storage) 2016-10-19T15:31:16 [DEBUG]...

As far as I know the Slider monitor just reverts to a previous state and then reapplies actions after that point. That's all what replaying does. Am I missing something?...

@mweststrate sadly I'm not going to any of the confs due to freelance wrap-ups before starting a new fulltime position. I wish I could. I guess with the new job...

Just checkedout master and merged with nested. Works with the "simple todo" example but only if the action is part of the Todo store. If it's extracted like so: ```...

Few ideas: - can we check the value of `this` in the action? - can we check parameter values? - check parent as it is in this pull request. If...