Skip to content

Commit

Permalink
Sustituir componentes eliminados por rup_select
Browse files Browse the repository at this point in the history
  • Loading branch information
xaabi6 committed Apr 18, 2024
1 parent 2799033 commit cc2d857
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
3 changes: 1 addition & 2 deletions spec/list/rup.list.a11y.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@
import 'jquery';
import 'jasmine-jquery';
import 'rup.feedback';
import 'rup.combo';
import 'rup.form';
import 'rup.list';
import 'rup.dialog';
import 'rup.button';
import 'rup.autocomplete';
import 'rup.select';
import 'bootstrap';
import * as listGen from './listCreator';

Expand Down
7 changes: 3 additions & 4 deletions spec/list/rup.list.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@
import 'jquery';
import 'jasmine-jquery';
import 'rup.feedback';
import 'rup.combo';
import 'rup.form';
import 'rup.list';
import 'rup.dialog';
import 'rup.button';
import 'rup.autocomplete';
import 'rup.select';
import 'bootstrap';
import * as testutils from '../common/specCommonUtils.js';
import * as listGen from './listCreator';
Expand Down Expand Up @@ -79,7 +78,7 @@ describe('Test rup_list', () => {
beforeEach((done) => {
listGen.createList('rup-list', 'listFilterForm', () => {
$('#rup-list').on('load', () => {
$('#rup-list-header-sidx').rup_combo('setRupValue', 'EDAD');
$('#rup-list-header-sidx').rup_select('setRupValue', 'EDAD');
$('#rup-list').off('load');
$('#rup-list').on('load', () => {
done();
Expand Down Expand Up @@ -216,7 +215,7 @@ describe('Test rup_list', () => {
$('#rup-list').on('load', () => {
done();
});
$('#rup-list-header-rowNum').rup_combo('setRupValue', '10');
$('#rup-list-header-rowNum').rup_select('setRupValue', '10');
});
$('#rup-list').rup_list('filter');
});
Expand Down
1 change: 0 additions & 1 deletion spec/select/rup.selectAutocomplete.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
import 'jquery';
import * as testutils from '../common/specCommonUtils.js';
import 'jasmine-jquery';
import 'rup.autocomplete';


var $autocomplete, $autocomplete2, $autocomplete3, $autocompleteLabel, $autocompleteLabel2, $autocompleteLabel3;
Expand Down

0 comments on commit cc2d857

Please sign in to comment.