@matware/e2e-runner 1.1.0 → 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (39) hide show
  1. package/.claude-plugin/plugin.json +9 -0
  2. package/.mcp.json +9 -0
  3. package/README.md +505 -279
  4. package/agents/test-analyzer.md +81 -0
  5. package/agents/test-creator.md +102 -0
  6. package/agents/test-improver.md +140 -0
  7. package/bin/cli.js +275 -7
  8. package/commands/create-test.md +50 -0
  9. package/commands/run.md +49 -0
  10. package/commands/verify-issue.md +63 -0
  11. package/package.json +11 -3
  12. package/skills/e2e-testing/SKILL.md +166 -0
  13. package/skills/e2e-testing/references/action-types.md +100 -0
  14. package/skills/e2e-testing/references/test-json-format.md +159 -0
  15. package/skills/e2e-testing/references/troubleshooting.md +182 -0
  16. package/src/actions.js +280 -17
  17. package/src/ai-generate.js +122 -11
  18. package/src/config.js +58 -0
  19. package/src/dashboard.js +173 -10
  20. package/src/db.js +232 -17
  21. package/src/index.js +9 -3
  22. package/src/learner-markdown.js +177 -0
  23. package/src/learner-neo4j.js +255 -0
  24. package/src/learner-sqlite.js +354 -0
  25. package/src/learner.js +413 -0
  26. package/src/mcp-tools.js +575 -16
  27. package/src/module-resolver.js +273 -0
  28. package/src/narrate.js +225 -0
  29. package/src/neo4j-pool.js +124 -0
  30. package/src/reporter.js +47 -2
  31. package/src/runner.js +180 -40
  32. package/src/verify.js +19 -5
  33. package/templates/build-dashboard.js +28 -0
  34. package/templates/dashboard/app.js +1152 -0
  35. package/templates/dashboard/styles.css +413 -0
  36. package/templates/dashboard/template.html +201 -0
  37. package/templates/dashboard.html +1091 -268
  38. package/templates/docker-compose-neo4j.yml +19 -0
  39. package/templates/e2e.config.js +3 -0
@@ -0,0 +1,19 @@
1
+ version: '3.8'
2
+ services:
3
+ neo4j:
4
+ image: neo4j:5
5
+ container_name: e2e-runner-neo4j
6
+ restart: unless-stopped
7
+ ports:
8
+ - "${BOLT_PORT}:7687"
9
+ - "${HTTP_PORT}:7474"
10
+ environment:
11
+ NEO4J_AUTH: "neo4j/${NEO4J_PASSWORD}"
12
+ NEO4J_PLUGINS: '[]'
13
+ volumes:
14
+ - neo4j-data:/data
15
+ - neo4j-logs:/logs
16
+
17
+ volumes:
18
+ neo4j-data:
19
+ neo4j-logs:
@@ -8,6 +8,9 @@ export default {
8
8
  // Directory containing JSON test files
9
9
  testsDir: 'e2e/tests',
10
10
 
11
+ // Directory for reusable modules (referenced via $use in tests)
12
+ // modulesDir: 'e2e/modules',
13
+
11
14
  // Directory for screenshots and reports
12
15
  screenshotsDir: 'e2e/screenshots',
13
16