style: run format first time
This commit is contained in:
@@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user