aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/dialog/core.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/dialog/core.js')
-rw-r--r--tests/unit/dialog/core.js10
1 files changed, 4 insertions, 6 deletions
diff --git a/tests/unit/dialog/core.js b/tests/unit/dialog/core.js
index 171d2789e..cb0ee53e0 100644
--- a/tests/unit/dialog/core.js
+++ b/tests/unit/dialog/core.js
@@ -4,6 +4,7 @@ define( [
"lib/helper",
"ui/widgets/dialog"
], function( QUnit, $, helper ) {
+"use strict";
// TODO add afterEach callback to remove dialogs
QUnit.module( "dialog: core", { afterEach: helper.moduleAfterEach } );
@@ -209,8 +210,7 @@ QUnit.test( "focus tabbable", function( assert ) {
function( done ) {
var inputs = element.find( "input"
);
- assert.equal
- ( document.activeElement, inputs[ 1 ], "Focus starts on second input" );
+ assert.equal( document.activeElement, inputs[ 1 ], "Focus starts on second input" );
inputs.last().simulate( "keydown", { keyCode: $.ui.keyCode.TAB } );
setTimeout( function() {
assert.equal( document.activeElement, inputs[ 0 ],
@@ -275,7 +275,7 @@ QUnit.test( "#9048: multiple modal dialogs opened and closed in different order"
function( assert ) {
var ready = assert.async();
assert.expect( 1 );
- $( "#dialog1, #dialog2" ).dialog( { autoOpen: false, modal:true } );
+ $( "#dialog1, #dialog2" ).dialog( { autoOpen: false, modal: true } );
$( "#dialog1" ).dialog( "open" );
$( "#dialog2" ).dialog( "open" );
$( "#dialog1" ).dialog( "close" );
@@ -311,9 +311,7 @@ QUnit.test( "interaction between overlay and other dialogs", function( assert )
// Wait for the modal to init
setTimeout( function() {
- second.
- testWidget
- ( "open" );
+ second.testWidget( "open" );
// Simulate user tabbing from address bar to an element outside the dialog
$( "#favorite-animal" ).trigger( "focus" );