style: Format test files with Prettier

Co-Authored-By: ashwin@anthropic.com <ashwin@anthropic.com>
This commit is contained in:
Devin AI
2025-01-16 19:27:49 +00:00
parent ce7f65b5be
commit bb6ab5a85a
5 changed files with 100 additions and 95 deletions

View File

@@ -1,20 +1,20 @@
import { defineConfig } from 'vitest/config'
import react from '@vitejs/plugin-react'
import path from 'path'
import { defineConfig } from "vitest/config";
import react from "@vitejs/plugin-react";
import path from "path";
export default defineConfig({
plugins: [react()],
test: {
environment: 'jsdom',
environment: "jsdom",
globals: true,
setupFiles: ['./test/setupTests.ts'],
setupFiles: ["./test/setupTests.ts"],
typecheck: {
tsconfig: './tsconfig.test.json'
}
tsconfig: "./tsconfig.test.json",
},
},
resolve: {
alias: {
'@': path.resolve(__dirname, './src'),
"@": path.resolve(__dirname, "./src"),
},
},
})
});