style: run format first time

This commit is contained in:
Michael Czechowski
2025-05-13 21:08:18 +02:00
parent 083942f0be
commit 0f2308a132
14 changed files with 1518 additions and 1573 deletions

View File

@@ -1,20 +1,20 @@
// vitest.config.js
import { defineConfig } from 'vitest/config';
import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
globals: true,
environment: 'jsdom',
setupFiles: ['./tests/setup.js'],
include: ['tests/**/*.{test,spec}.js'],
coverage: {
reporter: ['text', 'json', 'html'],
exclude: ['node_modules/', 'tests/setup.js']
},
server: {
deps: {
inline: true
}
}
}
});
test: {
globals: true,
environment: "jsdom",
setupFiles: ["./tests/setup.js"],
include: ["tests/**/*.{test,spec}.js"],
coverage: {
reporter: ["text", "json", "html"],
exclude: ["node_modules/", "tests/setup.js"]
},
server: {
deps: {
inline: true
}
}
}
});