UNPKG

@postdata/cli

Version:

A CLI to run Postdata test scripts in CI environments.

15 lines (13 loc) 330 B
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", ], }, });