api-client/packages/hoppscotch-cli/vitest.config.ts
James George a9afb17dc0
feat(cli): access team workspace collections and environments (#4095)
Co-authored-by: nivedin <nivedinp@gmail.com>
2024-06-27 18:11:29 +05:30

14 lines
330 B
TypeScript

import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
environment: "node",
setupFiles: ["./setupFiles.ts"],
include: ["**/src/__tests__/**/**/*.{test,spec}.ts"],
exclude: [
"**/node_modules/**",
"**/dist/**",
"**/src/__tests__/functions/**/*.ts",
],
},
});