Skip to content

Commit

Permalink
fix(cypress): fix compilation errors due to filename mismatch (#5740)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gnanasundari24 authored Aug 29, 2024
1 parent e939db2 commit 35666f5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as fixtures from "../../fixtures/imports";
import State from "../../utils/State";
import * as utils from "../RoutingUtils/utils";
import * as utils from "../RoutingUtils/Utils";

let globalState;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import * as fixtures from "../../fixtures/imports";
import State from "../../utils/State";
import * as utils from "../RoutingUtils/utils";
import * as utils from "../RoutingUtils/Utils";

let globalState;

Expand Down Expand Up @@ -39,7 +39,7 @@ describe("Volume Based Routing Test", () => {
});
});

afterEach("flush global state", () => {
after("flush global state", () => {
cy.task("setGlobalState", globalState.data);
});

Expand Down Expand Up @@ -166,7 +166,7 @@ describe("Volume Based Routing Test", () => {
});
});

afterEach("flush global state", () => {
after("flush global state", () => {
cy.task("setGlobalState", globalState.data);
});
it("list-mca-by-mid", () => {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
import * as fixtures from "../../fixtures/imports";
import State from "../../utils/State";
import * as utils from "../RoutingUtils/utils";
import * as utils from "../RoutingUtils/Utils";

let globalState;

describe("Rule Based Routing Test", () => {
let should_continue = true;

context("Create Jwt Token", () => {
before("seed global state", () => {
cy.task("getGlobalState").then((state) => {
Expand Down

0 comments on commit 35666f5

Please sign in to comment.