Skip to content

Commit

Permalink
chore: remove some leftover comment lines
Browse files Browse the repository at this point in the history
  • Loading branch information
muratmerdoglu-dp committed Jan 15, 2024
1 parent 698ecd6 commit 8a834e9
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions src/components/organisms/DataFilter/DataFilter.unit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,20 +81,6 @@ describe("@components/DataFilter/DataFilter.vue", () => {
});

describe("filter dialog", () => {
beforeEach(() => {
// create teleport target
const el = document.createElement("div");
el.id = "modal";
document.body.appendChild(el);
});
afterEach(() => {
// remove teleport target
const el = document.getElementById("modal");
if (el) {
el.remove();
}
});

it("should set the 'dialogOpen' false when 'close' event be emitted", async () => {
const wrapper = setup({ props: { filterFor: "student" } });

Expand Down

0 comments on commit 8a834e9

Please sign in to comment.