mirror of
https://github.com/directus/directus.git
synced 2026-01-28 11:58:11 -05:00
* added faker * added factories and tests * removed unnecessary factory * new schema * seedTable test * included all dbs in db relevant tests * json string for insert in dbs that aren't postgres * added organizer * polished up geometry types * added raw option to seedTable return * forgot await disonnect * createMany func with test * remove an only * createMany w/ options for relations and tests * tests for json field * removed an only * json support * factories working, ignore tests leaving for future
8 lines
176 B
JavaScript
8 lines
176 B
JavaScript
module.exports = {
|
|
preset: 'ts-jest',
|
|
verbose: true,
|
|
globalSetup: './setup/setup.ts',
|
|
globalTeardown: './setup/teardown.ts',
|
|
modulePathIgnorePatterns: ['setup/utils'],
|
|
};
|