aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/menu
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/menu')
-rw-r--r--tests/unit/menu/core.js5
-rw-r--r--tests/unit/menu/events.js6
-rw-r--r--tests/unit/menu/methods.js6
-rw-r--r--tests/unit/menu/options.js6
4 files changed, 15 insertions, 8 deletions
diff --git a/tests/unit/menu/core.js b/tests/unit/menu/core.js
index 8380d66bd..9e7bd1910 100644
--- a/tests/unit/menu/core.js
+++ b/tests/unit/menu/core.js
@@ -1,11 +1,12 @@
define( [
"qunit",
"jquery",
+ "lib/helper",
"./helper",
"ui/widgets/menu"
-], function( QUnit, $, testHelper ) {
+], function( QUnit, $, helper, testHelper ) {
-QUnit.module( "menu: core" );
+QUnit.module( "menu: core", { afterEach: helper.moduleAfterEach } );
QUnit.test( "markup structure", function( assert ) {
assert.expect( 11 );
diff --git a/tests/unit/menu/events.js b/tests/unit/menu/events.js
index 35eec7851..c50c184ec 100644
--- a/tests/unit/menu/events.js
+++ b/tests/unit/menu/events.js
@@ -1,9 +1,10 @@
define( [
"qunit",
"jquery",
+ "lib/helper",
"./helper",
"ui/widgets/menu"
-], function( QUnit, $, testHelper ) {
+], function( QUnit, $, helper, testHelper ) {
var log = testHelper.log,
logOutput = testHelper.logOutput,
@@ -12,7 +13,8 @@ var log = testHelper.log,
QUnit.module( "menu: events", {
beforeEach: function() {
testHelper.clearLog();
- }
+ },
+ afterEach: helper.moduleAfterEach
} );
QUnit.test( "handle click on menu", function( assert ) {
diff --git a/tests/unit/menu/methods.js b/tests/unit/menu/methods.js
index e0e942dd6..a5e5a90e3 100644
--- a/tests/unit/menu/methods.js
+++ b/tests/unit/menu/methods.js
@@ -1,9 +1,10 @@
define( [
"qunit",
"jquery",
+ "lib/helper",
"./helper",
"ui/widgets/menu"
-], function( QUnit, $, testHelper ) {
+], function( QUnit, $, helper, testHelper ) {
var log = testHelper.log,
logOutput = testHelper.logOutput,
@@ -12,7 +13,8 @@ var log = testHelper.log,
QUnit.module( "menu: methods", {
beforeEach: function() {
testHelper.clearLog();
- }
+ },
+ afterEach: helper.moduleAfterEach
} );
QUnit.test( "destroy", function( assert ) {
diff --git a/tests/unit/menu/options.js b/tests/unit/menu/options.js
index 8479b719c..525c6f016 100644
--- a/tests/unit/menu/options.js
+++ b/tests/unit/menu/options.js
@@ -1,9 +1,10 @@
define( [
"qunit",
"jquery",
+ "lib/helper",
"./helper",
"ui/widgets/menu"
-], function( QUnit, $, testHelper ) {
+], function( QUnit, $, helper, testHelper ) {
var log = testHelper.log,
logOutput = testHelper.logOutput,
@@ -12,7 +13,8 @@ var log = testHelper.log,
QUnit.module( "menu: options", {
beforeEach: function() {
testHelper.clearLog();
- }
+ },
+ afterEach: helper.moduleAfterEach
} );
QUnit.test( "{ disabled: true }", function( assert ) {