From b383e925e132e2a8c776bfd98a208e09aae2640f Mon Sep 17 00:00:00 2001 From: Jakub Olek Date: Tue, 11 Dec 2018 09:10:03 +0100 Subject: [PATCH 1/2] Remove Hooks from qunit-rfc-232 util-test blueprint --- .../qunit-rfc-232-files/__root__/__testType__/__name__-test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blueprints/util-test/qunit-rfc-232-files/__root__/__testType__/__name__-test.js b/blueprints/util-test/qunit-rfc-232-files/__root__/__testType__/__name__-test.js index 6aaad3ae708..97d28b1a4ba 100644 --- a/blueprints/util-test/qunit-rfc-232-files/__root__/__testType__/__name__-test.js +++ b/blueprints/util-test/qunit-rfc-232-files/__root__/__testType__/__name__-test.js @@ -1,7 +1,7 @@ import <%= camelizedModuleName %> from '<%= dasherizedModulePrefix %>/utils/<%= dasherizedModuleName %>'; import { module, test } from 'qunit'; -module('<%= friendlyTestName %>', function(hooks) { +module('<%= friendlyTestName %>', function() { // Replace this with your real tests. test('it works', function(assert) { From e248c8264f88b0f3981acd70e28bad54d4acc3bf Mon Sep 17 00:00:00 2001 From: hakubo Date: Tue, 11 Dec 2018 20:35:39 +0100 Subject: [PATCH 2/2] update fixture --- node-tests/fixtures/util-test/rfc232.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node-tests/fixtures/util-test/rfc232.js b/node-tests/fixtures/util-test/rfc232.js index d192fd6d295..b13add8dbfc 100644 --- a/node-tests/fixtures/util-test/rfc232.js +++ b/node-tests/fixtures/util-test/rfc232.js @@ -1,7 +1,7 @@ import fooBar from 'my-app/utils/foo-bar'; import { module, test } from 'qunit'; -module('Unit | Utility | foo-bar', function(hooks) { +module('Unit | Utility | foo-bar', function() { // Replace this with your real tests. test('it works', function(assert) {