From 620dcdde6e0e423a9343c63c7bc36d9e4301a2d8 Mon Sep 17 00:00:00 2001 From: Tim Graham Date: Mon, 19 Dec 2016 12:43:47 -0500 Subject: Updated to QUnit 2.0.1. --- js_tests/admin/SelectBox.test.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'js_tests/admin/SelectBox.test.js') diff --git a/js_tests/admin/SelectBox.test.js b/js_tests/admin/SelectBox.test.js index cb0259d12c..23c057c364 100644 --- a/js_tests/admin/SelectBox.test.js +++ b/js_tests/admin/SelectBox.test.js @@ -1,17 +1,17 @@ -/* global module, test, SelectBox */ +/* global QUnit, SelectBox */ /* eslint global-strict: 0, strict: 0 */ 'use strict'; -module('admin.SelectBox'); +QUnit.module('admin.SelectBox'); -test('init: no options', function(assert) { +QUnit.test('init: no options', function(assert) { var $ = django.jQuery; $('').appendTo('#qunit-fixture'); SelectBox.init('id'); assert.equal(SelectBox.cache.id.length, 0); }); -test('filter', function(assert) { +QUnit.test('filter', function(assert) { var $ = django.jQuery; $('').appendTo('#qunit-fixture'); $('').appendTo('#id'); -- cgit v1.3