adventofcode/vitest.config.js

10 lines
161 B
JavaScript
Raw Permalink Normal View History

2022-12-01 18:04:28 +00:00
/// <reference types="vitest" />
2022-12-01 18:57:29 +00:00
import { defineConfig } from "vite";
2022-12-01 18:04:28 +00:00
export default defineConfig({
test: {
2022-12-01 18:57:29 +00:00
include: ["**/*test.js"],
2022-12-01 18:04:28 +00:00
// ...
},
2022-12-01 18:57:29 +00:00
});