mirror of
https://github.com/suitenumerique/docs.git
synced 2026-05-12 09:57:02 +02:00
We want to lint the e2e tests, we export the eslint config from the app desk to a package in order to use it for the e2e tests and for our apps.
18 lines
372 B
JSON
18 lines
372 B
JSON
{
|
|
"name": "app-e2e",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"lint": "eslint . --ext .ts",
|
|
"install": "playwright install --with-deps",
|
|
"test": "playwright test",
|
|
"test:ui": "yarn test --ui"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "1.40.1",
|
|
"@types/node": "*",
|
|
"eslint-config-people": "*",
|
|
"typescript": "*"
|
|
}
|
|
}
|