mirror of
https://github.com/directus/directus.git
synced 2026-01-27 07:08:17 -05:00
* Enable schema caching for blackbox tests * Test if working for all vendors * Undo triggering of all vendors
9 lines
204 B
TypeScript
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;
|