mirror of
https://github.com/awalsh128/cache-apt-pkgs-action.git
synced 2026-08-25 18:34:48 +00:00
18 lines
389 B
TypeScript
18 lines
389 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
environment: "node",
|
|
include: ["test/**/*.test.ts"],
|
|
testTimeout: 120000,
|
|
coverage: {
|
|
provider: "v8",
|
|
reporter: ["text", "lcov", "json"],
|
|
reportsDirectory: "coverage",
|
|
include: ["src/**/*.ts"],
|
|
exclude: ["src/index.ts"],
|
|
},
|
|
},
|
|
});
|