mirror of
https://github.com/unraid/api.git
synced 2026-01-03 06:59:50 -06:00
11 lines
232 B
TypeScript
11 lines
232 B
TypeScript
/// <reference types="vitest/globals" />
|
|
import { config } from "@vue/test-utils";
|
|
import { cleanup } from "@testing-library/vue";
|
|
|
|
// Setup Vue Test Utils global config
|
|
config.global.stubs = {};
|
|
|
|
afterEach(() => {
|
|
cleanup();
|
|
});
|