You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
778 B

import { describe, expect, it } from "vitest";
import { EMPTY_PRIORITY1_SIMULATOR_FORM } from "@/lib/priority1/empty-simulator-form";
describe("EMPTY_PRIORITY1_SIMULATOR_FORM", () => {
it("does not prefill zip, date, email, phone or cargo fields", () => {
expect(EMPTY_PRIORITY1_SIMULATOR_FORM.originZip).toBe("");
expect(EMPTY_PRIORITY1_SIMULATOR_FORM.destinationZip).toBe("");
expect(EMPTY_PRIORITY1_SIMULATOR_FORM.pickupDate).toBe("");
expect(EMPTY_PRIORITY1_SIMULATOR_FORM.email).toBe("");
expect(EMPTY_PRIORITY1_SIMULATOR_FORM.phone).toBe("");
expect(EMPTY_PRIORITY1_SIMULATOR_FORM.weightLb).toBe("");
expect(EMPTY_PRIORITY1_SIMULATOR_FORM.commodity).toBe("");
expect(EMPTY_PRIORITY1_SIMULATOR_FORM.shipmentFrequency).toBe("");
});
});