feat(e2e): implement whole test suite
- some elements and tests still broken, but did the 80%
This commit is contained in:
30
package.json
30
package.json
@@ -9,33 +9,28 @@
|
||||
"task-master-mcp": "mcp-server/server.js",
|
||||
"task-master-ai": "mcp-server/server.js"
|
||||
},
|
||||
"workspaces": ["apps/*", "."],
|
||||
"workspaces": [
|
||||
"apps/*",
|
||||
"."
|
||||
],
|
||||
"scripts": {
|
||||
"test": "node --experimental-vm-modules node_modules/.bin/jest",
|
||||
"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: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",
|
||||
"test:e2e:jest": "node --experimental-vm-modules node_modules/.bin/jest --config jest.e2e.config.js",
|
||||
"test:e2e:jest:watch": "node --experimental-vm-modules node_modules/.bin/jest --config jest.e2e.config.js --watch",
|
||||
"test:e2e:jest:command": "node --experimental-vm-modules node_modules/.bin/jest --config jest.e2e.config.js --testNamePattern",
|
||||
"test:e2e:jest:report": "open test-results/index.html",
|
||||
"e2e": "node --experimental-vm-modules node_modules/.bin/jest --config jest.e2e.config.js",
|
||||
"e2e:watch": "node --experimental-vm-modules node_modules/.bin/jest --config jest.e2e.config.js --watch",
|
||||
"e2e:ai": "node --experimental-vm-modules node_modules/.bin/jest --config jest.e2e.projects.config.js --selectProjects='Heavy AI E2E Tests'",
|
||||
"e2e:non-ai": "node --experimental-vm-modules node_modules/.bin/jest --config jest.e2e.projects.config.js --selectProjects='Non-AI E2E Tests'",
|
||||
"e2e:report": "open test-results/index.html",
|
||||
"prepare": "chmod +x bin/task-master.js mcp-server/server.js",
|
||||
"changeset": "changeset",
|
||||
"release": "changeset publish",
|
||||
"inspector": "npx @modelcontextprotocol/inspector node mcp-server/server.js",
|
||||
"mcp-server": "node mcp-server/server.js",
|
||||
"format-check": "biome format .",
|
||||
"format": "biome format . --write"
|
||||
"format": "biome format . --write",
|
||||
"format:check": "biome format ."
|
||||
},
|
||||
"keywords": [
|
||||
"claude",
|
||||
@@ -134,6 +129,7 @@
|
||||
"jest": "^29.7.0",
|
||||
"jest-environment-node": "^29.7.0",
|
||||
"jest-html-reporters": "^3.1.7",
|
||||
"jest-junit": "^16.0.0",
|
||||
"mcp-jest": "^1.0.10",
|
||||
"mock-fs": "^5.5.0",
|
||||
"prettier": "^3.5.3",
|
||||
@@ -141,4 +137,4 @@
|
||||
"supertest": "^7.1.0",
|
||||
"tsx": "^4.16.2"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user