-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathindex.ts
More file actions
31 lines (25 loc) · 905 Bytes
/
index.ts
File metadata and controls
31 lines (25 loc) · 905 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import { mockTask, isMockTask, createMockTaskForUnitTest, mockTaskDependencies } from "./mockTask.js";
import { executeMockTask, testTaskFunction } from "./taskTesting.js";
import { setupMockTaskEnvironment } from "./mockTaskRegistry.js";
import { verifyTaskTriggered, getTaskTriggerCount, clearAllMockTriggers } from "./mockTrigger.js";
import { createMockHooks, verifyHookCalled } from "./mockHooks.js";
export * from "./types.js";
export * from "./mockTask.js";
export * from "./mockTrigger.js";
export * from "./mockHooks.js";
export * from "./taskTesting.js";
export * from "./mockTaskRegistry.js";
export const triggerTest = {
mockTask,
isMockTask,
createMockTaskForUnitTest,
mockTaskDependencies,
executeMockTask,
testTaskFunction,
setupMockTaskEnvironment,
verifyTaskTriggered,
getTaskTriggerCount,
clearAllMockTriggers,
createMockHooks,
verifyHookCalled,
};