-
-
Notifications
You must be signed in to change notification settings - Fork 155
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How to configure QUnit? #281
Comments
There are some examples of how to configure QUnit in the QUnit API documentation: http://api.qunitjs.com/config/QUnit.config#examples. They should work with |
What has me confused is how to get access to |
|
Derp. Didn't realize I can just import from qunit itself. Thanks! |
To setup // tests/test-helper.js
import { start } from 'ember-cli-qunit';
import QUnit from 'qunit';
QUnit.config.seed = '';
// or QUnit.config.seed = 'someString';
// or QUnit.config.seed = true;
start(); I also tried adding Any ideas? |
Particularly for things like maxDepth.
Happy to add a PR to the README once I figure out how to do this.
The text was updated successfully, but these errors were encountered: