Aleksei Chernov
Aleksei Chernov
`debug` is great in terms of log analysis, but it doesn't provide a way to add any custom output. I'm talking about providing an "which output format to use" option....
Btw, there is the third (probably the easiest) way besides the ones mentioned before: Update the test function so it will return an array with test results. That will allow...
Chrome on Android has a serious bug with keyboard events https://code.google.com/p/chromium/issues/detail?id=118639 For some reason event.keyCode always equals '0'
That's a well-known bug. Opera mobile completely ignores preventDefault/return false for keydown and keypress events. There is a simple example which illustrates that behaviour: http://jsfiddle.net/5zrhutra/ Opera mobile is an outdated...
All these bugs can be reproduced in Opera Mobile Emulator http://www.opera.com/ru/developer/mobile-emulator
I guess this could be possibly implemented by adding custom action type named "skip"
Just to prevent them from being accidentally committed into repo. Another solution is to add *.diff.png and *.new.png into .gitignore, but what is the use of those files in case...
@poliarush I believe I've located the issue. You expect tags to string literals here https://github.com/testomatio/check-tests/blob/master/src/lib/utils.js#L148 but we use constants instead: ``` test( 'Page loads', { tag: [Tags.REGRESSION, Tags.SANITY] }, async...
@hi-ogawa my goal is to use dynamic imports inside the inline worker without inlining.
@hi-ogawa sure: 1. I serve static from a CDN with a different origin, so my only option is inline worker to avoid CORS issues. 2. Inside the worker I'm dynamically...