1
0
Fork 0
mirror of synced 2024-10-01 01:28:51 +13:00

Update tests

This commit is contained in:
Andrew Kingston 2021-11-25 11:52:02 +00:00
parent aea0a9082b
commit 3abaded20a

View file

@ -19,10 +19,12 @@ describe("/queries", () => {
})
async function createInvalidIntegration() {
const datasource = await config.createDatasource({datasource: {
...basicDatasource().datasource,
source: "INVALID_INTEGRATION",
}})
const datasource = await config.createDatasource({
datasource: {
...basicDatasource().datasource,
source: "INVALID_INTEGRATION",
},
})
const query = await config.createQuery()
return { datasource, query }
}
@ -98,7 +100,6 @@ describe("/queries", () => {
.expect("Content-Type", /json/)
expect(res.body.fields).toBeUndefined()
expect(res.body.parameters).toBeUndefined()
expect(res.body.schema).toBeUndefined()
})
})
})