mirror of
https://github.com/directus/directus.git
synced 2026-01-24 10:28:01 -05:00
* Disable foreign check outside the trx in SQLite * Update test * Test if working for all vendors * Fix sequential tests flow * Revert triggering for all vendors
42 lines
1.3 KiB
JavaScript
42 lines
1.3 KiB
JavaScript
// Tests will run sequentially according to this list
|
|
exports.list = {
|
|
before: [
|
|
{ testFilePath: '/common/seed-database.test.ts' },
|
|
{ testFilePath: '/common/common.test.ts' },
|
|
{ testFilePath: '/routes/collections/crud.test.ts' },
|
|
{ testFilePath: '/routes/fields/change-fields.test.ts' },
|
|
],
|
|
after: [
|
|
{ testFilePath: '/schema/timezone/timezone.test.ts' },
|
|
{ testFilePath: '/schema/timezone/timezone-changed-node-tz-america.test.ts' },
|
|
{ testFilePath: '/schema/timezone/timezone-changed-node-tz-asia.test.ts' },
|
|
],
|
|
// If specified, only run these tests sequentially
|
|
only: [
|
|
// { testFilePath: '/common/seed-database.test.ts' },
|
|
// { testFilePath: '/common/common.test.ts' },
|
|
],
|
|
};
|
|
|
|
exports.getReversedTestIndex = function (testFilePath) {
|
|
if (this.list.only.length > 0) {
|
|
for (let index = 0; index < this.list.only.length; index++) {
|
|
if (testFilePath.includes(this.list.only[index].testFilePath)) {
|
|
return index;
|
|
}
|
|
}
|
|
}
|
|
|
|
for (let index = 0; index < this.list.before.length; index++) {
|
|
if (testFilePath.includes(this.list.before[index].testFilePath)) {
|
|
return index;
|
|
}
|
|
}
|
|
for (let index = 0; index < this.list.after.length; index++) {
|
|
if (testFilePath.includes(this.list.after[index].testFilePath)) {
|
|
return 0 - this.list.after.length + index;
|
|
}
|
|
}
|
|
return this.list.before.length;
|
|
};
|