Initial project version
Aegis CI / audit (push) Failing after 1m7s
Aegis CI / selfplay (push) Skipped
Aegis CI / perf (push) Failing after 3s
Aegis CI / report (push) Failing after 2s

This commit is contained in:
2026-08-29 01:45:19 +02:00
commit ea2a2f2cbf
21 changed files with 2830 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
{
"name": "aegis-labyrinth-automation",
"version": "1.0.0",
"description": "Automatisierte Test- und Audit-Suite für Aegis Labyrinth",
"license": "GPL-3.0-only",
"type": "module",
"scripts": {
"audit": "node tests/audit.mjs",
"selfplay": "node tests/selfplay.mjs",
"perf": "node tests/perf-test.mjs",
"report": "node tests/report.mjs",
"test": "node tests/audit.mjs && node tests/selfplay.mjs && node tests/perf-test.mjs",
"setup": "npx playwright install chromium"
},
"dependencies": {
"playwright": "^1.62.1"
},
"devDependencies": {
"js-yaml": "^4.1.0"
}
}