Skip to content

Commit

Permalink
Change The Scripts Of Tests & Update Docs (#97)
Browse files Browse the repository at this point in the history
Co-authored-by: NoamGaash <[email protected]>
  • Loading branch information
ArkadiK94 and NoamGaash authored Oct 6, 2023
1 parent a3493bb commit 75f2635
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
**/generated/*
**/generated/*
README.md
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ This app is created by the volunteers of [Public Knowledge Workshop](https://www
- `yarn start`

### testing the project:
- running the tests - `yarn playwright test`
- running the tests with UI - `yarn playwright test --ui`
- running the tests - `yarn test`
- running the tests with UI - `yarn test:ui`
- additional helpful flags - https://playwright.dev/docs/test-cli

### useful resources:
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@
"start": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"test": "echo \"no default test defined. to run playwright test, use `npm run test:playwright`\"",
"test:playwright": "playwright test",
"test": "playwright test",
"test:ui": "playwright test --ui",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --fix",
"format": "prettier --write './**/*.{js,jsx,ts,tsx,css,md,json}' --config ./.prettierrc"
Expand Down

0 comments on commit 75f2635

Please sign in to comment.