mirror of
https://github.com/awalsh128/cache-apt-pkgs-action.git
synced 2026-07-07 17:44:36 +00:00
16 lines
324 B
TypeScript
16 lines
324 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",
|
|
},
|
|
},
|
|
});
|