feat: Introduce modern E2E test suite for Task Master AI

This commit is contained in:
Ralph Khreish
2025-07-03 14:23:53 +03:00
parent 55442226d0
commit 395693af24
14 changed files with 2760 additions and 2 deletions

View File

@@ -15,8 +15,16 @@
"test:fails": "node --experimental-vm-modules node_modules/.bin/jest --onlyFailures",
"test:watch": "node --experimental-vm-modules node_modules/.bin/jest --watch",
"test:coverage": "node --experimental-vm-modules node_modules/.bin/jest --coverage",
"test:e2e": "./tests/e2e/run_e2e.sh",
"test:e2e-report": "./tests/e2e/run_e2e.sh --analyze-log",
"test:e2e:bash": "./tests/e2e/run_e2e.sh",
"test:e2e:bash:analyze": "./tests/e2e/run_e2e.sh --analyze-log",
"test:e2e": "node tests/e2e/run-e2e-tests.js",
"test:e2e:parallel": "node tests/e2e/run-e2e-tests.js --parallel",
"test:e2e:sequential": "node tests/e2e/run-e2e-tests.js --sequential",
"test:e2e:analyze": "node tests/e2e/run-e2e-tests.js --analyze-log",
"test:e2e:setup": "node tests/e2e/run-e2e-tests.js --groups setup",
"test:e2e:core": "node tests/e2e/run-e2e-tests.js --groups core",
"test:e2e:providers": "node tests/e2e/run-e2e-tests.js --groups providers",
"test:e2e:advanced": "node tests/e2e/run-e2e-tests.js --groups advanced",
"prepare": "chmod +x bin/task-master.js mcp-server/server.js",
"changeset": "changeset",
"release": "changeset publish",