Skip to content

Commit

Permalink
Changes for debugging #1259
Browse files Browse the repository at this point in the history
  • Loading branch information
joelvdavies committed Jan 16, 2025
1 parent 781b9a2 commit f365b55
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cypress/e2e/with_mock_data/systems.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ describe('Systems', () => {
cy.location('search').should('eq', '');
});

it('should be able to navigate through subsystems while preserving the table states when going back', () => {
it.only('should be able to navigate through subsystems while preserving the table states when going back', () => {

Check failure on line 132 in cypress/e2e/with_mock_data/systems.cy.ts

View workflow job for this annotation

GitHub Actions / Lint & Unit Tests

it.only not permitted
cy.visit('/systems/65328f34a40ff5301575a4e3');

cy.findByText('Smaller laser').should('be.visible');
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@
"preview:build:dev": "yarn build --watch & yarn preview",
"test": "vitest --coverage",
"lint": "eslint --max-warnings=0 --fix ./src ./cypress && tsc --noEmit && tsc --noEmit -p cypress/tsconfig.json",
"build:e2e": "cross-env VITE_APP_BUILD_STANDALONE=true VITE_APP_INCLUDE_MSW=true GENERATE_SOURCEMAP=false yarn build",
"build:e2e": "cross-env VITE_APP_BUILD_STANDALONE=true VITE_APP_INCLUDE_MSW=true GENERATE_SOURCEMAP=false yarn build --watch",
"build:e2e:api": "cross-env VITE_APP_BUILD_STANDALONE=true VITE_APP_INCLUDE_MSW=false GENERATE_SOURCEMAP=false yarn build",
"e2e:serve": "yarn build:e2e && node ./server/e2e-test-server.js",
"e2e:serve": "yarn build:e2e & node ./server/e2e-test-server.js",
"e2e:serve:api": "yarn build:e2e:api && node ./server/e2e-test-server.js",
"e2e:interactive": "start-server-and-test e2e:serve http://localhost:3000 cy:open",
"e2e:interactive:api": "start-server-and-test e2e:serve:api http://localhost:3000 cy:open",
Expand Down

0 comments on commit f365b55

Please sign in to comment.