Yaroslav Kukharuk

Results 18 issues of Yaroslav Kukharuk

For automated tests (and for VoiceOver users) we need to be able to check toolbar status programmatically. For this, we can change expand button label to reflect it's status i.e....

[Type] Tech Debt / Tech Task
[Type] Automated Testing

After switching to `async/await` - mocha stack traces become useless since they don't include any useful info except some promise related stack. This makes kinda hard to understand what the...

[Type] Bug

There few repositories where we store test-related code. For example https://github.com/Automattic/wp-e2e-tests-for-branches/blob/master/wait-for-running-branch.sh. There also `bridge` servers, which tightly coupled with our e2e repo. That's fine in most cases when you not...

[Type] Enhancement
Technical Debt

Pressable NUX flow was blocked disabled due to some sort fo Pressable bug. As mentioned by Sean - we shouldn't create a new site for every test. Instead, we should...

[Type] Task
Technical Debt

> We define a "flaky" test result as a test that exhibits both a passing and a failing result with the same code. https://testing.googleblog.com/2016/05/flaky-tests-at-google-and-how-we.html This is an ongoing list of...

[Type] Task

Current Jetpack branch build process looks like this: 1. Travis build is triggered. If build succeeded - it triggers beta builder 2. Beta builder doing some magic and produce a...

[Type] Bug
[Type] Task

`process.env.GITHUB_REF.split('/').slice(2).join('/')` does not work for a `pull_request` event. The suggested approach should cover both `push` and `pull_request` events

Adds a bandlimited wavetable oscillator. The implementation is quite opinionated, and it would require some amount of refactoring to make it general enough to be used in multiple use cases....

My API return `{"result":"error","content":{"code":"LOGIN_DATA_INCORRECT","parameters":{"loginAttemptsLeft":4}}}` and I want to check that `loginAttemptsLeft` was decremented after some actions. For now when I want to use complex matcher (via `Proc`) I need to...

Is there airborne'y way so sign requests with oAuth token? I found only way to do it directly with RestClient before exec proc: ``` access_token = MyModule.get_oauth[:token] RestClient.reset_before_execution_procs RestClient.add_before_execution_proc do...