UNPKG
ursamu-mud
Version:
latest (1.0.1)
1.0.1
1.0.0
Ursamu - Modular MUD Engine with sandboxed scripting and plugin system
ursamu-mud
/
dist
/
jest.setup.d.ts
14 lines
(13 loc)
•
273 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/** * Jest setup and utilities for testing */
declare global { namespace jest { interface Matchers<
R
> {
toBeValidReloadResult
(): R;
toHaveReloadErrors
(): R;
toCompleteWithinTime
(ms: number): R; } } } export {};