diff options
Diffstat (limited to 'shared/utils/miscs/stubs.ts')
-rw-r--r-- | shared/utils/miscs/stubs.ts | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/shared/utils/miscs/stubs.ts b/shared/utils/miscs/stubs.ts new file mode 100644 index 000000000..d1eb0e3b2 --- /dev/null +++ b/shared/utils/miscs/stubs.ts | |||
@@ -0,0 +1,14 @@ | |||
1 | function buildRequestStub (): any { | ||
2 | return { } | ||
3 | } | ||
4 | |||
5 | function buildResponseStub (): any { | ||
6 | return { | ||
7 | locals: {} | ||
8 | } | ||
9 | } | ||
10 | |||
11 | export { | ||
12 | buildResponseStub, | ||
13 | buildRequestStub | ||
14 | } | ||