✅(project) install e2e playwright
Install playwright, adapt the config file and add a scripts to run the tests. e2e testing will monitor all our frontend applications, so we install it in the frontend folder. It configures the base of our monorepo.
This commit is contained in:
15
src/frontend/apps/e2e/package.json
Normal file
15
src/frontend/apps/e2e/package.json
Normal file
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"name": "app-e2e",
|
||||
"version": "0.1.0",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"install": "playwright install --with-deps",
|
||||
"test": "playwright test",
|
||||
"test:ui": "yarn test --ui"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@playwright/test": "1.40.1",
|
||||
"@types/node": "*",
|
||||
"typescript": "*"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user