mirror of
https://github.com/directus/directus.git
synced 2026-02-08 18:24:55 -05:00
Co-authored-by: Azri Kahar <42867097+azrikahar@users.noreply.github.com> Co-authored-by: ian <licitdev@gmail.com> Co-authored-by: Rijk van Zanten <rijkvanzanten@me.com>
11 lines
280 B
TypeScript
11 lines
280 B
TypeScript
export module 'sequentialTests';
|
|
export type SequentialTestEntry = {
|
|
testFilePath: string;
|
|
};
|
|
export const list: {
|
|
before: SequentialTestEntry[];
|
|
after: SequentialTestEntry[];
|
|
only: SequentialTestEntry[];
|
|
};
|
|
export function getReversedTestIndex(testFilePath: string): number;
|