Fix qa-core global teardown
This commit is contained in:
parent
037396babb
commit
7bd7cdcdcf
|
@ -59,11 +59,13 @@ export default class AccountAPI {
|
|||
return [response, json]
|
||||
}
|
||||
|
||||
async delete(accountID: string, opts: APIRequestOpts = { doExpect: true }) {
|
||||
const [response, json] = await this.client.del(`/api/accounts/${accountID}`)
|
||||
|
||||
if (opts.doExpect) {
|
||||
expect(response).toHaveStatusCode(200)
|
||||
async delete(accountID: string) {
|
||||
const [response, json] = await this.client.del(`/api/accounts/${accountID}`, {
|
||||
internal: true,
|
||||
})
|
||||
// can't use expect here due to use in global teardown
|
||||
if (response.status !== 204) {
|
||||
throw new Error(`Could not delete accountId=${accountID}`)
|
||||
}
|
||||
return response
|
||||
}
|
||||
|
|
|
@ -11,7 +11,7 @@ async function deleteAccount() {
|
|||
// @ts-ignore
|
||||
const accountID = global.qa.accountId
|
||||
// can't run 'expect' blocks in teardown
|
||||
await accountsApi.accounts.delete(accountID, { doExpect: false })
|
||||
await accountsApi.accounts.delete(accountID)
|
||||
}
|
||||
|
||||
async function teardown() {
|
||||
|
|
Loading…
Reference in New Issue