Files
SDK-TypeScript/tests/vitest.setup.integration.ts
chatenium d7422efcf0
All checks were successful
Setup testing environment and test the code / build (push) Successful in 1m2s
Quick-fix
2026-04-08 16:56:09 +02:00

8 lines
233 B
TypeScript

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