Initialize

This commit is contained in:
ChenKaiLiuG
2026-01-29 11:48:45 +08:00
parent 8579a2f732
commit e139daa410
20 changed files with 1228 additions and 1 deletions

21
package.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "toje2e",
"version": "1.0.0",
"description": "E2E tests for NTOJ using Playwright",
"scripts": {
"test": "playwright test",
"test:headed": "playwright test --headed",
"test:headless": "playwright test",
"test:ui": "playwright test --ui",
"test:debug": "playwright test --debug",
"test:report": "playwright show-report",
"test:codegen": "playwright codegen https://tobiichi3227.eu.org:312"
},
"keywords": ["e2e", "playwright", "testing"],
"author": "",
"license": "MIT",
"devDependencies": {
"@playwright/test": "^1.48.0",
"@types/node": "^22.0.0"
}
}