feat: added tempo detection with auto-align beats feature

This commit is contained in:
Xiaohan-Tian
2026-05-26 22:45:54 -07:00
parent e82c3cbfc2
commit 7fc5ac1590
21 changed files with 1504 additions and 36 deletions
+18
View File
@@ -0,0 +1,18 @@
import { defineConfig } from '@playwright/test';
export default defineConfig({
testDir: './src/test/browser',
timeout: 30_000,
fullyParallel: false,
retries: 0,
use: {
baseURL: 'http://127.0.0.1:4174/kgstudio',
headless: true,
},
webServer: {
command: 'npm run dev -- --host 127.0.0.1 --port 4174',
url: 'http://127.0.0.1:4174/kgstudio/',
reuseExistingServer: true,
timeout: 30_000,
},
});