feat: add comprehensive end-to-end test suite

This commit is contained in:
Loic Coenen
2026-06-06 17:46:52 +00:00
committed by Loic Coenen (aider)
parent af7588b832
commit 18eb27e9c8
20 changed files with 1261 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
import * as path from "path";
export const PROJECT_DIR = path.resolve(__dirname, "..");
export const ENGINE_BIN = path.join(PROJECT_DIR, "engine/looper");
export const CLIENT_BIN = path.join(PROJECT_DIR, "client/looper-client");
export const STATUS_FIFO = "/tmp/looper_status";
export const CMD_FIFO = "/tmp/looper_cmd";
export const GEN_TONE_BIN = "/tmp/gen_tone";