Skip to content

Commit

Permalink
chore-LondheShubham153#4 : indentations fixed in vite.config.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
Aswin2255 authored and krishnaacharyaa committed May 13, 2024
1 parent 229ce58 commit d45cf5c
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions frontend/vite.config.ts
Original file line number Diff line number Diff line change
@@ -1,24 +1,23 @@
import { defineConfig,UserConfig } from 'vitest/config';
import { defineConfig, UserConfig } from 'vitest/config';
import react from '@vitejs/plugin-react-swc';
import path from 'path';
import { configDefaults } from 'vitest/config';

export default defineConfig({
plugins: [react()] as UserConfig["plugins"],
plugins: [react()] as UserConfig['plugins'],
test: {
environment: 'jsdom',
globals: true,
coverage:{
provider : 'v8',
coverage: {
provider: 'v8',
},
reporters:['verbose'],
exclude:[
...configDefaults.exclude,
'./src/__tests__/integration/home.test.tsx',
'./src/__tests__/App.test.tsx'
reporters: ['verbose'],
exclude: [
...configDefaults.exclude,
'./src/__tests__/integration/home.test.tsx',
'./src/__tests__/App.test.tsx',
],



setupFiles: './test-setup.ts',
},

Expand Down

0 comments on commit d45cf5c

Please sign in to comment.