updating tests

This commit is contained in:
2024-08-21 21:45:56 -06:00
parent 7853b88b0a
commit ae704f7bae
5 changed files with 242 additions and 23 deletions

View File

@@ -1,9 +1,14 @@
import { defineConfig } from 'vitest/config'
import react from '@vitejs/plugin-react'
import { defineConfig } from "vitest/config";
import react from "@vitejs/plugin-react";
export default defineConfig({
plugins: [react()],
test: {
environment: 'jsdom',
resolve: {
alias: {
"@": "/src",
},
},
})
test: {
environment: "jsdom",
},
});