From 418a390585b09469bedcaad59b887a2b94c5eb1e Mon Sep 17 00:00:00 2001 From: JulienChampagnol Date: Thu, 2 May 2024 11:40:32 +0200 Subject: [PATCH] cleanup imports --- test/components/Errors/ErrorsSnackers.nuxt.test.js | 6 ------ test/components/Inspector/InspectionButon.nuxt.test.js | 1 - 2 files changed, 7 deletions(-) diff --git a/test/components/Errors/ErrorsSnackers.nuxt.test.js b/test/components/Errors/ErrorsSnackers.nuxt.test.js index a41125b..562ef79 100644 --- a/test/components/Errors/ErrorsSnackers.nuxt.test.js +++ b/test/components/Errors/ErrorsSnackers.nuxt.test.js @@ -11,12 +11,6 @@ import ErrorsSnackers from "@/components/Errors/Snackers.vue" const vuetify = createVuetify({ components, directives, - layout: { - name: "custom", - render(h, children) { - return h("div", {}, children) - }, - }, }) describe("ErrorsSnackers.vue", async () => { diff --git a/test/components/Inspector/InspectionButon.nuxt.test.js b/test/components/Inspector/InspectionButon.nuxt.test.js index 793edb2..b694b8c 100644 --- a/test/components/Inspector/InspectionButon.nuxt.test.js +++ b/test/components/Inspector/InspectionButon.nuxt.test.js @@ -2,7 +2,6 @@ import { describe, expect, test } from "vitest" import { registerEndpoint, mountSuspended } from "@nuxt/test-utils/runtime" -import { mount } from "@vue/test-utils" import { flushPromises } from "@vue/test-utils" import { createVuetify } from "vuetify"