Fix jest asserts
This commit is contained in:
parent
0bdb6396ed
commit
ac62fc0e29
|
@ -121,6 +121,7 @@ describe.each([
|
|||
})
|
||||
|
||||
beforeEach(() => {
|
||||
jest.clearAllMocks()
|
||||
mocks.licenses.useCloudFree()
|
||||
})
|
||||
|
||||
|
@ -1604,7 +1605,7 @@ describe.each([
|
|||
expect(response.rows).toHaveLength(0)
|
||||
})
|
||||
|
||||
it("queries the row api passing the view fields only", async () => {
|
||||
it.only("queries the row api passing the view fields only", async () => {
|
||||
const searchSpy = jest.spyOn(sdk.rows, "search")
|
||||
|
||||
const view = await config.api.viewV2.create({
|
||||
|
|
Loading…
Reference in New Issue