Skip to content

Commit

Permalink
changes done
Browse files Browse the repository at this point in the history
  • Loading branch information
khushipatil1523 committed Dec 21, 2024
1 parent 38be998 commit eb21376
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@
"noEmit": true,
"jsx": "react-jsx",
"paths": {
"GraphQl/*": ["src/GraphQl/*"],
"Components/*": ["src/components/*"],
"Utilities/*": ["src/utils/*"] // Adjust or add based on other folders you might have
"GraphQl/*": ["GraphQl/*"],
"Components/*": ["components/*"],
"Utilities/*": ["utils/*"] // Adjust or add based on other folders you might have
}
},
"include": ["src", "src/App.tsx", "setup.ts"],
Expand Down
2 changes: 1 addition & 1 deletion vitest.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export default defineConfig({
tsconfigPaths(),
],
test: {
include: ['src/**/*.spec.{js,jsx,ts,tsx}'],
include: ['src/**/*.test.{js,jsx,ts,tsx}'],
globals: true,
environment: 'jsdom',
coverage: {
Expand Down

0 comments on commit eb21376

Please sign in to comment.