diff --git a/test/cypress/integration/vnComponent/vnLocation.spec.js b/test/cypress/integration/vnComponent/vnLocation.spec.js index c83befbe7..0e98e5f68 100644 --- a/test/cypress/integration/vnComponent/vnLocation.spec.js +++ b/test/cypress/integration/vnComponent/vnLocation.spec.js @@ -1,3 +1,5 @@ +const { randomNumber, randomString } = require('../../support'); + describe('VnLocation', () => { const locationOptions = '[role="listbox"] > div.q-virtual-scroll__content > .q-item'; const dialogInputs = '.q-dialog label input'; @@ -117,14 +119,19 @@ describe('VnLocation', () => { }); it('Create city without country', () => { - const cityName = 'Saskatchew'.concat(Math.random(1 * 100)); + const postCode = randomNumber(); + const province = randomString({ length: 4 }); cy.get(createLocationButton).click(); + cy.get(dialogInputs).eq(0).type(postCode); cy.get( `${createForm.prefix} > :nth-child(4) > .q-select > ${createForm.sufix} > :nth-child(2) > .q-icon` ).click(); cy.selectOption('#q-portal--dialog--3 .q-select', 'one'); - cy.get('#q-portal--dialog--3 .q-input').type(cityName); + cy.get('#q-portal--dialog--3 .q-input').type(province); cy.get('#q-portal--dialog--3 .q-btn--standard').click(); + cy.get('#q-portal--dialog--1 .q-btn--standard').click(); + cy.waitForElement('.q-form'); + checkVnLocation(postCode, province); }); it('Create province without country', () => { diff --git a/test/cypress/support/index.js b/test/cypress/support/index.js index 4385698ec..c57c1a303 100644 --- a/test/cypress/support/index.js +++ b/test/cypress/support/index.js @@ -15,3 +15,19 @@ import './commands'; +function randomString(options = { length: 10 }) { + let possible = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'; + return randomizeValue(possible, options); +} + +function randomNumber(options = { length: 10 }) { + let possible = '0123456789'; + return randomizeValue(possible, options); +} + +function randomizeValue(characterSet, options) { + return Array.from({ length: options.length }, () => + characterSet.charAt(Math.floor(Math.random() * characterSet.length)) + ).join(''); +} +export { randomString, randomNumber, randomizeValue };