mirror of
https://github.com/quartz-community/recent-notes.git
synced 2026-07-22 02:50:28 +00:00
10 lines
185 B
TypeScript
10 lines
185 B
TypeScript
|
|
import { defineConfig } from "vitest/config";
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
test: {
|
||
|
|
environment: "node",
|
||
|
|
include: ["test/**/*.test.ts"],
|
||
|
|
reporters: ["default"],
|
||
|
|
},
|
||
|
|
});
|