mirror of
https://github.com/DeBrosOfficial/network-ts-sdk.git
synced 2025-12-10 09:38:50 +00:00
14 lines
248 B
TypeScript
14 lines
248 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
import dotenv from "dotenv";
|
|
|
|
dotenv.config();
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
environment: "node",
|
|
include: ["tests/**/*.test.ts"],
|
|
testTimeout: 30000,
|
|
},
|
|
});
|