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