Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion api-data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,15 @@ const testEntityData: TestEntityWithoutCustomPropertiesInterface = {
rowValue2: 'rowValue2'
},
stringChipsArrayValue: ['01234', '56789'],
stringChipsArrayValueWithConfig: ['01234', '56789'],
// eslint-disable-next-line cspell/spellchecker
stringChipsAutocompleteArrayValue: ['ABCDE', 'FGHIJ'],
stringChipsArrayValueWithConfig: ['01234', '56789'],
// eslint-disable-next-line cspell/spellchecker
stringChipsAutocompleteArrayValueWithConfig: ['ABCDE', 'FGHIJ'],
// eslint-disable-next-line cspell/spellchecker
stringDropdownArrayValue: ['ABCDE', 'FGHIJ'],
// eslint-disable-next-line cspell/spellchecker
stringDropdownArrayValueWithConfig: ['ABCDE', 'FGHIJ'],
orderValue1: '1',
orderValue2: '2',
orderValue3: '3',
Expand Down
16 changes: 14 additions & 2 deletions cypress/support/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,13 +78,25 @@ Cypress.Commands.add(

// eslint-disable-next-line cspell/spellchecker
cy.getInputByLabel('String Chips Array Value').click().type('abcd{enter}efgh{enter}');
cy.getInputByLabel('String Chips Autocomplete Array Value').click().type('123{enter}456{enter}');

// eslint-disable-next-line cspell/spellchecker
cy.getInputByLabel('String Chips Array Value With Config').click().type('abcd{enter}efgh{enter}');

cy.getInputByLabel('String Chips Autocomplete Array Value').click().type('123{enter}456{enter}');
// eslint-disable-next-line cspell/spellchecker
cy.getInputByLabel('String Chips Autocomplete Array Value With Config').click().type('ABCDE{enter}FGHIJ{enter}');

cy.getInputByLabel('String Dropdown Array Value').click();
cy.get('mat-option').contains('ABCDE').click();
// eslint-disable-next-line cspell/spellchecker
cy.get('mat-option').contains('FGHIJ').click();
cy.get('body').type('{esc}');

cy.getInputByLabel('String Dropdown Array Value With Config').click();
cy.get('mat-option').contains('ABCDE').click();
// eslint-disable-next-line cspell/spellchecker
cy.get('mat-option').contains('FGHIJ').click();
cy.get('body').type('{esc}');

cy.getInputByLabel('Array Object Value').click().type('arrayObjectValue');
cy.get('.mdc-tab__text-label').eq(5).click({ force: true });
cy.getInputByLabel('Second Tab Value').click().type('secondTabValue');
Expand Down
Loading