1
0
Fork 0
mirror of synced 2024-08-09 15:17:57 +12:00
This commit is contained in:
Adria Navarro 2023-11-20 13:27:37 +01:00
parent ab31d90de8
commit afaa0a70a9

View file

@ -130,18 +130,16 @@ describe("datasourceUtils", () => {
searchTerm searchTerm
) )
expect(result).toEqual( expect(result).toEqual([
expect.arrayContaining([ expect.objectContaining({
expect.objectContaining({ _id: internalTables._id,
_id: internalTables._id, show: true,
show: true, }),
}), expect.objectContaining({
expect.objectContaining({ _id: pgDatasource._id,
_id: pgDatasource._id, show: true,
show: false, }),
}), ])
])
)
}) })
}) })
}) })