Skip to content

v1.13.0

Compare
Choose a tag to compare
@san650 san650 released this 08 Jan 00:36
· 565 commits to master since this release

Native events mode allows tests not to depend on Ember global test helpers like click, fillIn, etc. This is crucial for testing of jquery-free apps.

You can enable native events mode by putting the following lines inside your test-helper.js:

import { useNativeEvents } from 'ember-cli-page-object/extend';

useNativeEvents();

Community Contributions