Skip to content

Commit

Permalink
testdouble does not have a default export
Browse files Browse the repository at this point in the history
  • Loading branch information
NullVoxPopuli committed May 8, 2022
1 parent 3f5daab commit 50f5bbe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test-app/tests/assertions/testdouble.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as QUnit from 'qunit';

import td from 'testdouble';
import * as td from 'testdouble';
import installVerifyAssertion from 'testdouble-qunit';

installVerifyAssertion(QUnit, td);
2 changes: 1 addition & 1 deletion test-app/tests/integration/components/transition-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { setupRenderingTest } from 'ember-qunit';

import { ARG_SHOW_MISSING_ERROR_MESSAGE } from 'ember-headlessui/components/transition';
import { PARENT_MISSING_ERROR_MESSAGE } from 'ember-headlessui/components/transition/child';
import td from 'testdouble';
import * as td from 'testdouble';

module('Integration | Component | transition', function (hooks) {
setupRenderingTest(hooks);
Expand Down

0 comments on commit 50f5bbe

Please sign in to comment.