datatracker/playwright/package.json
Nicolas Giard deb01f2d83
test: remove cypress + migrate existing tests to playwright (#4781)
* test: remove cypress + migrate existing tests to playwright + update workflows

* ci: remove leftover condition in ci-run-tests workflow

* ci: add missing matrix to tests-playwright-legacy

* ci: run playwright legacy as user 1001

* ci: set home var for firefox

* ci: allow firefox to run as root for tests
2022-11-22 16:26:19 -06:00

29 lines
786 B
JSON

{
"scripts": {
"install-deps": "playwright install --with-deps",
"test": "playwright test",
"test:legacy": "playwright test -c playwright-legacy.config.js",
"test:visual": "playwright test --headed --workers=1",
"test:debug": "playwright test --debug"
},
"devDependencies": {
"@playwright/test": "1.28.0",
"eslint": "8.28.0",
"eslint-config-standard": "17.0.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-n": "15.5.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.1.1",
"npm-check-updates": "16.4.1"
},
"dependencies": {
"@faker-js/faker": "7.6.0",
"lodash": "4.17.21",
"lodash-es": "4.17.21",
"luxon": "3.1.0",
"ms": "2.1.3",
"seedrandom": "3.0.5",
"slugify": "1.6.5"
}
}