Skip to content

Commit 337419f

Browse files
Update QUnit to version 2.0.0
Closes js-cookiegh-212.
1 parent fcd3d4a commit 337419f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"grunt-jscs": "3.0.0",
3939
"grunt-saucelabs": "8.6.2",
4040
"gzip-js": "0.3.2",
41-
"qunitjs": "1.23.1",
41+
"qunitjs": "2.0.0",
4242
"requirejs": "2.2.0"
4343
}
4444
}

test/amd.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ require(['qunit'], function (QUnit) {
33

44
QUnit.start();
55
QUnit.test('module loading', function (assert) {
6-
QUnit.expect(1);
6+
assert.expect(1);
77
var done = assert.async();
88
require(['/src/js.cookie.js'], function (Cookies) {
99
assert.ok(!!Cookies.get, 'should load the api');

0 commit comments

Comments
 (0)