Add generic E2E harness and Marmot TS relay test suite

This commit is contained in:
2026-03-14 00:32:34 +01:00
parent d95cd1cb33
commit 9616383e19
7 changed files with 706 additions and 50 deletions

View File

@@ -61,6 +61,7 @@ defmodule Parrhesia.MixProject do
"ecto.reset": ["ecto.drop", "ecto.setup"],
test: ["ecto.create --quiet", "ecto.migrate --quiet", "test"],
"test.nak_e2e": ["cmd ./scripts/run_nak_e2e.sh"],
"test.marmot_e2e": ["cmd ./scripts/run_marmot_e2e.sh"],
# cov: ["cmd mix coveralls.lcov"],
lint: ["format --check-formatted", "credo"],
precommit: [
@@ -69,7 +70,8 @@ defmodule Parrhesia.MixProject do
"credo --strict --all",
"deps.unlock --unused",
"test",
"test.nak_e2e"
"test.nak_e2e",
"test.marmot_e2e"
]
]
end