django/js_tests/admin/actions.test.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
622 B
JavaScript
Raw Normal View History

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