Skip to content

Commit

Permalink
Merge pull request #239 from danwenzel/fix-setRunOptions-path-readme
Browse files Browse the repository at this point in the history
Correct import path of setRunOptions in README
  • Loading branch information
rwjblue committed Feb 26, 2021
2 parents 50e5b51 + 5673180 commit 6ccbc1d
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ Globally:

```javascript
// tests/test-helper.js
import { setRunOptions } from 'ember-a11y-testing';
import { setRunOptions } from 'ember-a11y-testing/test-support';

setRunOptions({
rules: {
Expand All @@ -113,7 +113,7 @@ Test module level:

```javascript
import { module, test } from 'qunit';
import { setRunOptions } from 'ember-a11y-testing';
import { setRunOptions } from 'ember-a11y-testing/test-support';

module('some test module', function (hooks) {
hooks.beforeEach(function () {
Expand All @@ -139,8 +139,7 @@ Individual test level:

```javascript
import { module, test } from 'qunit';
import { a11yAudit } from 'ember-a11y-testing/test-support';
import { setRunOptions } from 'ember-a11y-testing';
import { a11yAudit, setRunOptions } from 'ember-a11y-testing/test-support';

module('some test module', function (hooks) {
test('some test', function (assert) {
Expand Down

0 comments on commit 6ccbc1d

Please sign in to comment.