Fix jest issues

This commit is contained in:
Adria Navarro 2024-08-23 14:15:23 +02:00
parent 99bd057160
commit 8929b4a336
1 changed files with 122 additions and 122 deletions

View File

@ -2427,6 +2427,10 @@ describe.each([
})
})
// Upserting isn't yet supported in MSSQL or Oracle, see:
// https://github.com/knex/knex/pull/6050
!isMSSQL &&
!isOracle &&
describe("relationships", () => {
let tableId: string
@ -2554,10 +2558,6 @@ describe.each([
tableId = table._id!
})
// Upserting isn't yet supported in MSSQL or Oracle, see:
// https://github.com/knex/knex/pull/6050
!isMSSQL &&
!isOracle &&
it.each([
["get row", (row: Row) => config.api.row.get(tableId, row._id!)],
[