mirror of
https://github.com/dedicatedcode/reitti.git
synced 2026-01-09 17:37:57 -05:00
28 lines
695 B
JSON
28 lines
695 B
JSON
{
|
|
"name": "e2e-tests",
|
|
"version": "1.0.0",
|
|
"description": "Frontend tests",
|
|
"type": "module",
|
|
"scripts": {
|
|
"test": "playwright test",
|
|
"test:headed": "playwright test --headed",
|
|
"test:debug": "playwright test --debug",
|
|
"test:ui": "playwright test --ui",
|
|
"docker:up": "docker compose up -d",
|
|
"docker:down": "docker compose down",
|
|
"test:docker": "npm run docker:up && sleep 5 && npm run test && npm run docker:down"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.40.0",
|
|
"@midleman/github-actions-reporter": "^1.10.1"
|
|
},
|
|
"keywords": [
|
|
"playwright",
|
|
"testing",
|
|
"frontend",
|
|
"date-picker"
|
|
],
|
|
"author": "",
|
|
"license": "MIT"
|
|
}
|