Skip to content

Commit

Permalink
adding npm packages
Browse files Browse the repository at this point in the history
  • Loading branch information
xoscar committed Dec 13, 2023
1 parent 6d5252b commit 9da4dcb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions cypress/e2e/1-getting-started/home.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const definition = `
value: attr:name
`;

describe('Home', /*{ defaultCommandTimeout: 60000 }, */ () => {
describe('Home', { defaultCommandTimeout: 60000 }, () => {
before(done => {
tracetest.configure(TRACETEST_API_TOKEN).then(() => done());
});
Expand All @@ -49,9 +49,9 @@ describe('Home', /*{ defaultCommandTimeout: 60000 }, */ () => {


// uncomment to wait for trace tests to be done
// after(done => {
// tracetest.summary().then(() => done());
// });
after(done => {
tracetest.summary().then(() => done());
});

it('create a pokemon', () => {
cy.get('[data-cy="create-pokemon-button"]').should('be.visible').click();
Expand Down

0 comments on commit 9da4dcb

Please sign in to comment.