refactor: remove default browser setting and update test case to run normally
gitea/salix-front/pipeline/pr-test This commit looks good Details

This commit is contained in:
Javier Segarra 2025-03-03 23:35:29 +01:00
parent 399437d334
commit 73eab5baa4
2 changed files with 1 additions and 2 deletions

View File

@ -5,7 +5,6 @@ import { defineConfig } from 'cypress';
export default defineConfig({
e2e: {
defaultBrowser: 'chromium',
baseUrl: 'http://localhost:9000/',
experimentalStudio: true,
fixturesFolder: 'test/cypress/fixtures',

View File

@ -168,7 +168,7 @@ describe('TicketSale', () => {
.should('have.text', `${discount}.00%`);
});
it.only('change concept', () => {
it('change concept', () => {
const concept = Math.floor(Math.random() * 100) + 1;
cy.waitForElement(firstRow);
cy.get('[data-col-field="item"]').click();