Skip to content

Commit

Permalink
feat: add playwright extension in VSCode
Browse files Browse the repository at this point in the history
  • Loading branch information
ixartz committed Oct 12, 2023
1 parent 9fe8271 commit 956d1a8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .vscode/extensions.json
@@ -1,11 +1,12 @@
{
"recommendations": [
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"mikestead.dotenv",
"csstools.postcss",
"bradlc.vscode-tailwindcss",
"Orta.vscode-jest",
"yoavbls.pretty-ts-errors"
"humao.rest-client",
"yoavbls.pretty-ts-errors",
"ms-playwright.playwright"
]
}
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -223,9 +223,9 @@ One of the benefits of using Conventional Commits is that it allows us to automa

All tests are colocated with the source code inside the same directory. So, it makes it easier to find them. Unfortunately, it is not possible with the `pages` folder which is used by Next.js for routing. So, what is why we have a `pages.test` folder to write tests from files located in `pages` folder.

### E2E Testing
### Integration & E2E Testing

The project uses Playwright for E2E testing. You can run the tests with:
The project uses Playwright for Integration and E2E testing. You can run the tests with:

```shell
npx playwright install # Only for the first time in a new environment
Expand Down

0 comments on commit 956d1a8

Please sign in to comment.