Skip to content

Commit

Permalink
Run React instead of Vue component tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Gnuk committed Aug 9, 2024
1 parent ff705d0 commit 1ae93f7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,18 @@
"react:dev": "vite --config vite-react.config.ts",
"react:build": "tsc && vite --config vite-react.config.ts build",
"react:component:serve": "NODE_ENV=production vite --config vite-react.config.ts",
"react:test:component": "start-server-and-test react:component:serve http://localhost:3030 test:component:open",
"react:test:component:ci": "start-server-and-test react:component:serve http://localhost:3030 test:component:run",
"vue:dev": "vite --config vite-vue.config.ts",
"vue:build": "vue-tsc && vite --config vite-vue.config.ts build",
"vue:component:serve": "vite --config vite-vue.config.ts",
"vue:test:component": "start-server-and-test vue:component:serve http://localhost:3030 test:component:open",
"vue:test:component:ci": "start-server-and-test vue:component:serve http://localhost:3030 test:component:run",
"preview": "vite preview",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0 --ignore-path .gitignore",
"lint:fix": "npm run lint -- --fix",
"test": "vitest",
"test:ci": "vitest run --coverage",
"react:test:component": "start-server-and-test react:component:serve http://localhost:3030 test:component:open",
"react:test:component:ci": "start-server-and-test vue:component:serve http://localhost:3030 test:component:run",
"vue:test:component": "start-server-and-test vue:component:serve http://localhost:3030 test:component:open",
"vue:test:component:ci": "start-server-and-test vue:component:serve http://localhost:3030 test:component:run",
"test:component:open": "cypress open --config-file test/component/cypress.config.ts",
"test:component:run": "cypress run --config-file test/component/cypress.config.ts"
},
Expand Down

0 comments on commit 1ae93f7

Please sign in to comment.