mirror of
https://github.com/rcourtman/Pulse.git
synced 2026-05-05 23:36:37 +00:00
32 lines
1.1 KiB
JSON
32 lines
1.1 KiB
JSON
{
|
|
"name": "pulse-integration-tests",
|
|
"version": "1.0.0",
|
|
"description": "Integration tests for Pulse (Playwright E2E)",
|
|
"type": "module",
|
|
"scripts": {
|
|
"test": "node ./scripts/run-playwright.mjs",
|
|
"evals": "node ./scripts/run-evals.mjs",
|
|
"test:visual": "npm test -- tests/06-theme-visual.spec.ts --project=chromium",
|
|
"test:visual:update": "npm test -- tests/06-theme-visual.spec.ts --project=chromium --update-snapshots",
|
|
"test:ui": "playwright test --ui",
|
|
"test:debug": "playwright test --debug",
|
|
"test:headed": "playwright test --headed",
|
|
"test:report": "playwright show-report",
|
|
"docker:up": "docker-compose -f docker-compose.test.yml up -d",
|
|
"docker:down": "docker-compose -f docker-compose.test.yml down -v",
|
|
"docker:logs": "docker-compose -f docker-compose.test.yml logs -f",
|
|
"docker:rebuild": "docker-compose -f docker-compose.test.yml up -d --build"
|
|
},
|
|
"keywords": [
|
|
"pulse",
|
|
"integration",
|
|
"e2e",
|
|
"playwright"
|
|
],
|
|
"author": "rcourtman",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/node": "^20.10.0",
|
|
"typescript": "^5.3.0"
|
|
}
|
|
}
|