Skip to content

Commit d6d8103

Browse files
author
arensman
committed
Update test to contain all hooks
1 parent a0b6f37 commit d6d8103

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/lib/rules/no-setup-teardown.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ ruleTester.run("no-setup-teardown", rule, {
3535
// after
3636
"QUnit.module('Module', { after: function () {} });",
3737

38-
// both
39-
"QUnit.module('Module', { beforeEach: function () {}, afterEach: function () {} });",
38+
// all
39+
"QUnit.module('Module', { before: function () {}, beforeEach: function () {}, afterEach: function () {}, after: function () {} });",
4040

4141
// other property names are not reported
4242
"QUnit.module('Module', { foo: function () {} });",

0 commit comments

Comments
 (0)