Skip to content

Commit

Permalink
Merge pull request #17340 from hakubo/patch-1
Browse files Browse the repository at this point in the history
Remove Hooks from qunit-rfc-232 util-test blueprint
  • Loading branch information
rwjblue committed Dec 11, 2018
2 parents 17d2678 + e248c82 commit 3d7cfff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
@@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion 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) {
Expand Down

0 comments on commit 3d7cfff

Please sign in to comment.