mirror of
https://github.com/HeyPuter/puter.git
synced 2026-01-01 02:30:41 -06:00
7 lines
221 B
TypeScript
7 lines
221 B
TypeScript
// setup.ts - Vitest global setup for Puter API tests (TypeScript)
|
|
import { beforeAll } from 'vitest';
|
|
|
|
beforeAll(async () => {
|
|
// Setup global mocks or environment if needed
|
|
// Example: globalThis.fetch = ...
|
|
}); |