Files
directus/tests-blackbox/setup/global.ts
ian 1514b0c204 Enable schema caching for blackbox tests (#15070)
* Enable schema caching for blackbox tests

* Test if working for all vendors

* Undo triggering of all vendors
2022-08-15 09:56:41 -04:00

9 lines
204 B
TypeScript

import { ChildProcess } from 'child_process';
const global = {
directus: {} as { [vendor: string]: ChildProcess },
directusNoCache: {} as { [vendor: string]: ChildProcess },
};
export default global;