Skip to content

Commit

Permalink
Merge pull request #930 from emberjs/rwjblue-patch-1
Browse files Browse the repository at this point in the history
Fix code examples & add ember-cli release version in #637
  • Loading branch information
kategengler committed Apr 25, 2023
2 parents 635a291 + b735df3 commit fe07af6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions text/0637-customizable-test-setups.md
Expand Up @@ -4,7 +4,7 @@ start-date: 2020-06-01T00:00:00.000Z
release-date: 2020-05-02T00:00:00.000Z
release-versions:
ember-source: v4.4.0
# ember-cli: FIXME
ember-cli: v4.3.0

teams:
- framework
Expand Down Expand Up @@ -50,7 +50,7 @@ For example:

```js
import { module, test } from 'qunit';
import setupTest from 'ember-qunit';
import { setupTest } from 'ember-qunit';

module('Unit | Service | tomster', function(hooks) {
setupTest(hooks);
Expand All @@ -64,7 +64,7 @@ manually be changed to:

```js
import { module, test } from 'qunit';
import setupTest from 'my-app/tests/helpers';
import { setupTest } from 'my-app/tests/helpers';

module('Unit | Service | tomster', function(hooks) {
setupTest(hooks);
Expand All @@ -77,8 +77,8 @@ or where the setup functions are to be composed, this must be added:

```js
import { module, test } from 'qunit';
import setupTest from 'ember-qunit';
import setupMyTest from 'my-app/tests/helpers';
import { setupTest } from 'ember-qunit';
import { setupMyTest } from 'my-app/tests/helpers';

module('Unit | Service | tomster', function(hooks) {
setupTest(hooks);
Expand Down

0 comments on commit fe07af6

Please sign in to comment.