mirror of
https://github.com/coder/coder.git
synced 2026-06-02 20:48:20 +00:00
a581431bc8
- Fix to display apps with disabled health status on workspaces list - Migrate WorkspacesPage jest test into vitest - Modularize vitest setup into separate files: - setup/polyfills.ts: Blob, ResizeObserver polyfills - setup/domStubs.ts: Radix UI pointer capture stubs - setup/mocks.ts: useProxyLatency mock - setup/msw.ts: MSW server lifecycle Fixed #20319
6 lines
160 B
TypeScript
6 lines
160 B
TypeScript
// Vitest setup entry point - imports modular setup files.
|
|
import "./setup/polyfills";
|
|
import "./setup/domStubs";
|
|
import "./setup/mocks";
|
|
import "./setup/msw";
|