diff --git a/src/digital-components/date-picker/date-picker.spec.js b/src/digital-components/date-picker/date-picker.spec.js index 96e1b6a61..f140e9adb 100644 --- a/src/digital-components/date-picker/date-picker.spec.js +++ b/src/digital-components/date-picker/date-picker.spec.js @@ -5,20 +5,20 @@ import { shallowMount } from "@vue/test-utils"; import { getMountOptions } from "@/helpers/unit-test-helper.js"; describe("date-picker.vue", () => { - // describe("initial setup", () => { - // test("Creates a date object from today", () => { - // // Arrange - // const { wrapper } = setupMocks({}); + describe("initial setup", () => { + test("Creates a date object from today", () => { + // Arrange + const { wrapper } = setupMocks({}); - // // Act - // const testResult = wrapper.vm.todayDateObj instanceof Date; + // Act + const testResult = wrapper.vm.todayDate instanceof Date; - // // Assert - // expect(testResult).toEqual(true); + // Assert + expect(testResult).toEqual(true); - // wrapper.unmount(); - // }); - // }); + wrapper.unmount(); + }); + }); // describe("formatNumberToSetDigits", () => { // const testScenarios = [ // [0, 3, "000"],