add chord serialization, vitest

This commit is contained in:
2023-07-08 13:29:57 +02:00
parent dbd02e9dec
commit 44f82f2b4e
8 changed files with 1150 additions and 34 deletions

10
vitest.config.ts Normal file
View File

@@ -0,0 +1,10 @@
import {defineConfig} from "vitest/config"
import {svelte} from "@sveltejs/vite-plugin-svelte"
export default defineConfig({
plugins: [svelte({hot: !process.env.VITEST})],
test: {
globals: true,
environment: "jsdom",
},
})