Fix jest issues
This commit is contained in:
parent
99bd057160
commit
8929b4a336
|
@ -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!)],
|
||||
[
|
||||
|
|
Loading…
Reference in New Issue