-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Tests: POC for intern support using accordion/autocomplete module #1575
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
7f006d3
344eba7
f2a291f
1954384
1073182
f7b63ea
805c21e
9ad657e
843ba49
e724301
215d254
22ea3d4
08136e9
bda9302
4f92416
6add4f0
251ff75
2f75843
a317514
12c2a23
e8e5586
2d16a6c
2aeedac
4e96e8c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -71,7 +71,7 @@ | |
| "grunt-html": "4.0.1", | ||
| "grunt-jscs": "1.5.0", | ||
| "grunt-selenium-server": "0.1.2", | ||
| "intern": "git://github.com/apsdehal/intern#iss-415", | ||
| "intern": "git://github.com/theintern/intern", | ||
| "load-grunt-tasks": "0.3.0", | ||
| "rimraf": "2.1.4", | ||
| "requirejs": "2.1.17", | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bad indentation for most of these. |
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| define( [ "require" ], function ( require ) { | ||
| define( [], function() { | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove the empty array. |
||
|
|
||
| // Create a module that disables back compat for UI modules | ||
| define( "jquery-no-back-compat", [ "jquery" ], function( $ ) { | ||
|
|
@@ -29,11 +29,11 @@ define( [ "require" ], function ( require ) { | |
|
|
||
| // Load a set of test file along with the required test infrastructure | ||
| function requireTests( dependencies, noBackCompat ) { | ||
| dependencies = dependencies.concat([ | ||
| dependencies = [ | ||
| "lib/qunit", | ||
| noBackCompat ? "jquery-no-back-compat" : "jquery", | ||
| "jquery-simulate", | ||
| "lib/qunit" | ||
| ]); | ||
| "jquery-simulate" | ||
| ].concat( dependencies ); | ||
|
|
||
| requireModules( dependencies, function( QUnit ) { | ||
| QUnit.start(); | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,4 @@ | ||
| define( [] , function () { | ||
| define( [], function () { | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Remove the empty array.
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Also bad spacing after |
||
| return function( options ) { | ||
|
|
||
| function includeStyle( url ) { | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What did you need that isn't released yet?