mirror of
https://github.com/github/codeql-action.git
synced 2025-12-30 03:00:13 +08:00
The [release notes](https://github.com/avajs/ava/releases/tag/v4.3.3) mention compatibility with Node 18.8.
13 lines
401 B
TypeScript
13 lines
401 B
TypeScript
import type {TestFn} from './types/test-fn.js';
|
|
|
|
export * from './types/assertions.js';
|
|
export * from './types/try-fn.js';
|
|
export * from './types/test-fn.js';
|
|
export * from './types/subscribable.js';
|
|
|
|
/** Call to declare a test, or chain to declare hooks or test modifiers */
|
|
declare const test: TestFn;
|
|
|
|
/** Call to declare a test, or chain to declare hooks or test modifiers */
|
|
export default test;
|