mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-28 20:23:43 +08:00
23 lines
700 B
JavaScript
23 lines
700 B
JavaScript
import apiKeyCreateBody from "../../fixtures/create-api-key-body.json";
|
|
import merchantCreateBody from "../../fixtures/merchant-create-body.json";
|
|
import State from "../../utils/State";
|
|
|
|
let globalState;
|
|
describe("Account Create flow test", () => {
|
|
before("seed global state", () => {
|
|
cy.task("getGlobalState").then((state) => {
|
|
globalState = new State(state);
|
|
});
|
|
});
|
|
after("flush global state", () => {
|
|
cy.task("setGlobalState", globalState.data);
|
|
});
|
|
|
|
it("merchant-create-call-test", () => {
|
|
cy.merchantCreateCallTest(merchantCreateBody, globalState);
|
|
});
|
|
it("api-key-create-call-test", () => {
|
|
cy.apiKeyCreateTest(apiKeyCreateBody, globalState);
|
|
});
|
|
});
|