blob: 0077dd6ff3232a57fc4f941f27262475425e0116 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* global QUnit */
'use strict';
QUnit.module('admin.actions', {
beforeEach: function() {
// Number of results shown on page
/* eslint-disable */
window._actions_icnt = '100';
/* eslint-enable */
const $ = django.jQuery;
$('#qunit-fixture').append($('#result-table').text());
Actions(document.querySelectorAll('tr input.action-select'));
}
});
QUnit.test('check', function(assert) {
const $ = django.jQuery;
assert.notOk($('.action-select').is(':checked'));
$('#action-toggle').click();
assert.ok($('.action-select').is(':checked'));
});
|