aboutsummaryrefslogtreecommitdiffstats
path: root/contracts/tests.ts
blob: fec995d4f976a49724e2315b553de13fd74acac4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/**
 * Contract source: https://bit.ly/3DP1ypf
 *
 * Feel free to let us know via PR, if you find something broken in this contract
 * file.
 */

import '@japa/runner';

declare module '@japa/runner' {
  interface TestContext {
    // Extend context
  }

  // eslint-disable-next-line @typescript-eslint/no-unused-vars
  interface Test<TestData> {
    // Extend test
  }
}