WIP: feat(test): Add framework of real-Obsidian based e2e test

This commit is contained in:
vorotamoroz
2026-05-11 03:33:11 +01:00
parent 2afe12ad2d
commit edf85184c1
7 changed files with 451 additions and 2 deletions

View File

@@ -54,7 +54,10 @@
"test:docker-all:start": "npm run test:docker-all:up && sleep 5 && npm run test:docker-all:init",
"test:docker-all:stop": "npm run test:docker-all:down",
"test:full": "npm run test:docker-all:start && vitest run --coverage && npm run test:docker-all:stop",
"test:p2p": "bash test/suitep2p/run-p2p-tests.sh"
"test:p2p": "bash test/suitep2p/run-p2p-tests.sh",
"test:obsidian:e2e": "npx playwright test --config test_e2e/playwright.config.ts",
"test:obsidian:e2e:headed": "npx playwright test --config test_e2e/playwright.config.ts --headed",
"test:obsidian:build-and-e2e": "npm run buildDev && npm run test:obsidian:e2e"
},
"keywords": [],
"author": "vorotamoroz",