Skip to content

Commit

Permalink
test: try to fix issue on Main Merge Workflow (#697)
Browse files Browse the repository at this point in the history
  • Loading branch information
fterra-encora authored Dec 28, 2023
1 parent 7de796c commit 248b1f2
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import { describe, it, expect } from "vitest";
import { DOMWrapper, mount } from "@vue/test-utils";
import { describe, it, expect, afterEach } from "vitest";
import { DOMWrapper, mount, enableAutoUnmount } from "@vue/test-utils";
import DateInputComponent from "@/components/forms/DateInputComponent/index.vue";
import { isMinimumYearsAgo } from "@/helpers/validators/GlobalValidators";

describe("Date Input Component", () => {
enableAutoUnmount(afterEach);
const id = "my-date";

const setInputValue = async (
Expand Down

0 comments on commit 248b1f2

Please sign in to comment.