feat: implement clip deletion via 'd' key and CMD_DELETE command

This commit is contained in:
Loic Coenen
2026-06-06 18:31:52 +00:00
committed by Loic Coenen (aider)
parent 18eb27e9c8
commit 2c30bba5fa
9 changed files with 7719 additions and 3 deletions

View File

@@ -1,6 +1,7 @@
import { execSync, exec, ChildProcess } from "child_process";
import * as path from "path";
import * as fs from "fs";
import { testDeleteClip } from './test_delete_clip';
const PROJECT_DIR = path.resolve(__dirname, "..");
const ENGINE_BIN = path.join(PROJECT_DIR, "engine/looper");
@@ -1184,7 +1185,8 @@ async function main(): Promise<void> {
testStressRandomUsage,
testKeyPressLatency,
testStatusFifoLevelLine,
testVUMeter
testVUMeter,
testDeleteClip
];
let passCount = 0;
let failCount = 0;