2016-12-19 12:43:47 -05:00
|
|
|
/* global QUnit */
|
2015-08-26 00:24:55 -04:00
|
|
|
'use strict';
|
|
|
|
|
2016-12-19 12:43:47 -05:00
|
|
|
QUnit.module('admin.actions', {
|
2015-04-14 10:55:57 -04:00
|
|
|
beforeEach: function() {
|
|
|
|
// Number of results shown on page
|
2015-08-26 00:24:55 -04:00
|
|
|
/* eslint-disable */
|
2015-04-14 10:55:57 -04:00
|
|
|
window._actions_icnt = '100';
|
2015-08-26 00:24:55 -04:00
|
|
|
/* eslint-enable */
|
2015-04-14 10:55:57 -04:00
|
|
|
|
2020-04-20 17:39:15 -07:00
|
|
|
const $ = django.jQuery;
|
2015-04-14 10:55:57 -04:00
|
|
|
$('#qunit-fixture').append($('#result-table').text());
|
|
|
|
|
2020-06-24 11:13:51 +02:00
|
|
|
Actions(document.querySelectorAll('tr input.action-select'));
|
2015-04-14 10:55:57 -04:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-12-19 12:43:47 -05:00
|
|
|
QUnit.test('check', function(assert) {
|
2020-04-20 17:39:15 -07:00
|
|
|
const $ = django.jQuery;
|
2015-04-14 10:55:57 -04:00
|
|
|
assert.notOk($('.action-select').is(':checked'));
|
|
|
|
$('#action-toggle').click();
|
|
|
|
assert.ok($('.action-select').is(':checked'));
|
|
|
|
});
|