We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d855605 commit f92eb3eCopy full SHA for f92eb3e
1 file changed
components/projects/bootstrapcomponents/src/select/select.cy.ts
@@ -132,8 +132,9 @@ describe('ServoyBootstrapSelect', () => {
132
133
it('should allow multiselect', () => {
134
config.componentProperties.multiselect = true;
135
- wrapper.component.dataProviderID = ['1'];
136
- cy.mount(WrapperComponent, config).then(() => {
+ cy.mount(WrapperComponent, config).then(wrapper => {
+ wrapper.component.dataProviderID = ['1'];
137
+ wrapper.fixture.detectChanges();
138
cy.get('select').should('have.attr', 'multiple');
139
cy.get('select').invoke('val').should('deep.equal', ["0: '1'"]).then(() => {
140
cy.get('select').select(["0: '1'", "1: '2'"]).then(() => {
0 commit comments