This commit is contained in:
2022-05-26 20:57:59 +00:00
parent ebd5473e64
commit 16201c399f
3 changed files with 12 additions and 7 deletions

View File

@@ -14,9 +14,14 @@ describe("SMOKE SETUP", () => {
.then((res) => {
cy.request({
method: "POST",
url: `${Cypress.env("apiBaseUrl")}trial/seed/small/-7/true`,
url: `${Cypress.env("apiBaseUrl")}trial/seed`,
auth: {
bearer: res.data.token
}, ///small/-7/true
body: {
seedLevel: "small",
timeZoneOffset: -7,
e2e: true
}
})
.its("body")
@@ -43,4 +48,4 @@ function confirmJobDone(jobId, authToken) {
cy.wait(1000);
confirmJobDone(jobId, authToken);
});
}
}