/home/techb158/workloadmatch.com/bower_components/select2/tests/integration
NameSizeModeActions
dom-changes.js47400777editdlrm
jquery-calls.js6090777editdlrm
select2-methods.js26950777editdlrm
Edit: /home/techb158/workloadmatch.com/bower_components/select2/tests/integration/jquery-calls.js (609B)
module('select2(val)'); test('multiple elements with arguments works', function (assert) { var $ = require('jquery'); require('jquery.select2'); var $first = $( '' ); 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' ); });