ember-test-helpers
ember-test-helpers copied to clipboard
Test-framework-agnostic helpers for testing Ember.js applications
Hi there. I have been testing my application on IE 11, and maybe I found an interesting "bug". When I wrote a test that triggers an event blur, it worked...
Regression: DOM helpers no longer wait on test waiters unless `ember-test-helpers/wait` is imported
I have been attempting to upgrade ember-attacher to ember 3.2 and beyond, but my tests started failing with the new test framework. Previously, calls on `await click('.stuff')` would wait until...
I am writing a ember component [ember-slider](https://github.com/RVenkatesh/Ember-Slider). I wrote some basic test cases for the component. But when I tried to write a test case triggering 'tap' event using ember-test-helpers,...
I'm working on a visual editor where clicking at different positions gives different results (eg clicking on or outside a shape). I'd like to be able to pass `x,y` coords...
I recently upgraded an app to Ember 3.1.4 (from 2.1.8), we also switched to RFC 232 style tests as well (great improvement!). But, we noticed that our test suite run...
As reported in https://github.com/emberjs/ember-qunit/issues/298, after updating to the newer API's here some previously passing test suites fail on older browsers. We should: * Add testing for the following in Sauce...
* Should not invoke `element.focus()` if the element _already_ has focus * `isFocusable` should check if `element.disabled === true`
We are using https://github.com/matteodepalo/ember-cli-timecop in a few component integration tests and until now this worked fine. We tried to convert those tests to use the new testing APIs, but now...
It would be useful to add a `catch` to the promise chain here for debug purposes when the owner fails to be created. https://github.com/emberjs/ember-test-helpers/blob/master/addon-test-support/%40ember/test-helpers/setup-context.js#L167
From https://github.com/emberjs/ember-test-helpers/pull/258#discussion_r155962501. > Add support for pointer events? That might unify tap/click.