mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-29 00:49:42 +08:00
19 lines
526 B
JavaScript
19 lines
526 B
JavaScript
import customerCreateBody from "../../fixtures/create-customer-body.json";
|
|
import State from "../../utils/State";
|
|
|
|
let globalState;
|
|
|
|
describe("Customer 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("customer-create-call-test", () => {
|
|
cy.createCustomerCallTest(customerCreateBody, globalState);
|
|
});
|
|
});
|