Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/ember/testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ Now, with that setup out of the way, let’s get back to talking about the text
import { module, test } from 'qunit';
import { setupRenderingTest } from 'ember-qunit';
import { render } from '@ember/test-helpers';
import hbs from 'htmlbars-inline-precompile';
import hbs } from 'ember-cli-htmlbars';

import User from 'app/types/user';

Expand Down Expand Up @@ -283,7 +283,7 @@ Putting it all together, this is what our updated test definition would look lik
import { module, test } from 'qunit';
import { setupRenderingTest } from 'ember-qunit';
import { render, TestContext } from '@ember/test-helpers';
import hbs from 'htmlbars-inline-precompile';
import hbs } from 'ember-cli-htmlbars';

import User from 'app/types/user';

Expand Down