1
0
mirror of https://gitlab.com/JKANetwork/CheckServer.git synced 2026-02-23 21:43:46 +01:00
Files
CheckServer/vendors/select2/tests/integration/jquery-calls.js
2020-10-04 17:14:00 +02:00

30 lines
609 B
JavaScript

module('select2(val)');
test('multiple elements with arguments works', function (assert) {
var $ = require('jquery');
require('jquery.select2');
var $first = $(
'<select>' +
'<option>1</option>' +
'<option>2</option>' +
'</select>'
);
var $second = $first.clone();
var $both = $first.add($second);
$both.select2();
$both.select2('val', '2');
assert.equal(
$first.val(),
'2',
'The call should change the value on the first element'
);
assert.equal(
$second.val(),
'2',
'The call should also change the value on the second element'
);
});