real-debrid-downloader/vitest.config.ts
Sucukdeluxe b96ed1eb7a
Some checks failed
Build and Release / build (push) Has been cancelled
Migrate app to Node Electron with modern React UI
2026-02-27 03:25:56 +01:00

10 lines
175 B
TypeScript

import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
environment: "node",
include: ["tests/**/*.test.ts"],
globals: true
}
});