All checks were successful
Setup testing environment and test the code / build (push) Successful in 1m2s
8 lines
233 B
TypeScript
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")
|
|
})
|