Some checks failed
Setup testing environment and test the code / build (push) Failing after 1m3s
8 lines
227 B
TypeScript
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")
|
|
})
|