1
0
mirror of https://github.com/django/django.git synced 2025-01-15 04:45:51 +00:00
django/js_tests/admin/actions.test.js

24 lines
622 B
JavaScript
Raw Normal View History

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