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