CSR-1413
more prettier
This commit is contained in:
parent
1653a6b4e3
commit
5abc6f590d
2 changed files with 7 additions and 4 deletions
|
|
@ -1,5 +1,9 @@
|
||||||
import * as cookieHelper from "@/helpers/heritage-integration/cookie-helper";
|
import * as cookieHelper from "@/helpers/heritage-integration/cookie-helper";
|
||||||
import { loadSessionIfPresent, saveSession, submitWorkOrder } from "@/helpers/heritage-integration/order-helper";
|
import {
|
||||||
|
loadSessionIfPresent,
|
||||||
|
saveSession,
|
||||||
|
submitWorkOrder,
|
||||||
|
} from "@/helpers/heritage-integration/order-helper";
|
||||||
import { cookieNames } from "@/constants/cookie-names";
|
import { cookieNames } from "@/constants/cookie-names";
|
||||||
import {
|
import {
|
||||||
setupMocksForJsFiles,
|
setupMocksForJsFiles,
|
||||||
|
|
@ -240,7 +244,6 @@ describe("saveSession", () => {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
describe("submitWorkOrder", () => {
|
describe("submitWorkOrder", () => {
|
||||||
afterEach(() => {
|
afterEach(() => {
|
||||||
removeAllTestCookies();
|
removeAllTestCookies();
|
||||||
|
|
@ -347,4 +350,4 @@ describe("submitWorkOrder", () => {
|
||||||
// Assert
|
// Assert
|
||||||
expect(cookieHelper.getFunnelCookie().DidHeritageFunnelUpdateLast).toEqual(false);
|
expect(cookieHelper.getFunnelCookie().DidHeritageFunnelUpdateLast).toEqual(false);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
||||||
|
|
@ -2777,7 +2777,7 @@ describe("Getters", () => {
|
||||||
// Assert
|
// Assert
|
||||||
expect(getters.submitAfterSave(storeState)).toEqual(true);
|
expect(getters.submitAfterSave(storeState)).toEqual(true);
|
||||||
});
|
});
|
||||||
|
|
||||||
it("Vehicle getter, should return vehicle data", () => {
|
it("Vehicle getter, should return vehicle data", () => {
|
||||||
// Arrange
|
// Arrange
|
||||||
const storeState = state;
|
const storeState = state;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue