From fc2d80b11607217d8d38c0cae480154791433d91 Mon Sep 17 00:00:00 2001 From: Eoin Houlihan Date: Thu, 19 Sep 2019 20:10:25 +0100 Subject: [PATCH] Fix import in README example The `test` function is already correctly imported in the example from `qunit` and not from `ember-qunit` --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5d44aed7..3fb3758d 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ template strings: // ember-cli-project/test/unit/components/my-component-test.js import { module, test } from 'qunit'; import { render } from '@ember/test-helpers'; -import { setupRenderingTest, test } from 'ember-qunit'; +import { setupRenderingTest } from 'ember-qunit'; import hbs from 'htmlbars-inline-precompile'; module('my-component', function(hooks) {