Skip to content

Commit dc4d325

Browse files
committed
feat: initial e2e setup with first test implemented
1 parent a23c4d9 commit dc4d325

9 files changed

Lines changed: 5663 additions & 1 deletion

File tree

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,3 +54,8 @@ CLAUDE.md
5454
*.temp
5555
temp/
5656

57+
58+
# Test reports
59+
test/e2e/allure-results/
60+
test/e2e/allure-report/
61+
test/e2e/.wdio-vscode-service/

test/e2e/package.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "e2e",
3+
"type": "module",
4+
"devDependencies": {
5+
"@types/node": "^25.5.2",
6+
"@wdio/allure-reporter": "^9.27.0",
7+
"@wdio/cli": "^9.27.0",
8+
"@wdio/globals": "^9.27.0",
9+
"@wdio/local-runner": "^9.27.0",
10+
"@wdio/mocha-framework": "^9.27.0",
11+
"@wdio/spec-reporter": "^9.27.0",
12+
"allure-commandline": "^2.38.1",
13+
"expect-webdriverio": "^5.6.5",
14+
"wdio-vscode-service": "^6.1.4"
15+
},
16+
"scripts": {
17+
"test:e2e": "wdio run ./wdio.conf.ts",
18+
"test:report": "allure generate allure-results -o allure-report --clean && allure open allure-report"
19+
}
20+
}

0 commit comments

Comments
 (0)