aboutsummaryrefslogtreecommitdiffstats
path: root/contracts/tests.ts
diff options
context:
space:
mode:
Diffstat (limited to 'contracts/tests.ts')
-rw-r--r--contracts/tests.ts19
1 files changed, 19 insertions, 0 deletions
diff --git a/contracts/tests.ts b/contracts/tests.ts
new file mode 100644
index 0000000..fec995d
--- /dev/null
+++ b/contracts/tests.ts
@@ -0,0 +1,19 @@
1/**
2 * Contract source: https://bit.ly/3DP1ypf
3 *
4 * Feel free to let us know via PR, if you find something broken in this contract
5 * file.
6 */
7
8import '@japa/runner';
9
10declare module '@japa/runner' {
11 interface TestContext {
12 // Extend context
13 }
14
15 // eslint-disable-next-line @typescript-eslint/no-unused-vars
16 interface Test<TestData> {
17 // Extend test
18 }
19}