mirror of
				https://github.com/django/django.git
				synced 2025-10-29 08:36:09 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			631 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			631 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /* global QUnit, Actions */
 | |
| 'use strict';
 | |
| 
 | |
| QUnit.module('admin.actions', {
 | |
|     beforeEach: function() {
 | |
|         // Number of results shown on page
 | |
|         /* eslint-disable */
 | |
|         window._actions_icnt = '100';
 | |
|         /* eslint-enable */
 | |
| 
 | |
|         const $ = django.jQuery;
 | |
|         $('#qunit-fixture').append($('#result-table').text());
 | |
| 
 | |
|         Actions(document.querySelectorAll('tr input.action-select'));
 | |
|     }
 | |
| });
 | |
| 
 | |
| QUnit.test('check', function(assert) {
 | |
|     const $ = django.jQuery;
 | |
|     assert.notOk($('.action-select').is(':checked'));
 | |
|     $('#action-toggle').click();
 | |
|     assert.ok($('.action-select').is(':checked'));
 | |
| });
 |