Files
SDK-TypeScript/tests/vitest.setup.integration.ts
chatenium ec418ca7c9
Some checks failed
Setup testing environment and test the code / build (push) Failing after 1m3s
Remove env overwrites (Not needed anymore)
2026-04-05 12:33:01 +02:00

8 lines
227 B
TypeScript

import {beforeAll, beforeEach} from 'vitest';
import {environment, SDKConfig} from "../src/core/environment";
import {getClient} from "../src/core/http";
beforeEach(async () => {
await getClient(false).post("v2/reset")
})