From 5f3ac9b6a4556466c56ccaf0935f1f73bfdd2604 Mon Sep 17 00:00:00 2001 From: Danny Martini Date: Thu, 2 Jan 2025 09:55:42 +0100 Subject: [PATCH] fix lint --- packages/editor-ui/src/components/WorkflowSettings.test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/editor-ui/src/components/WorkflowSettings.test.ts b/packages/editor-ui/src/components/WorkflowSettings.test.ts index 5d4df0a364fac..ae0e27131f386 100644 --- a/packages/editor-ui/src/components/WorkflowSettings.test.ts +++ b/packages/editor-ui/src/components/WorkflowSettings.test.ts @@ -2,7 +2,8 @@ import { createPinia, setActivePinia } from 'pinia'; import WorkflowSettingsVue from '@/components/WorkflowSettings.vue'; import { setupServer } from '@/__tests__/server'; -import { afterAll, beforeAll, MockInstance } from 'vitest'; +import type { MockInstance } from 'vitest'; +import { afterAll, beforeAll } from 'vitest'; import { within } from '@testing-library/vue'; import userEvent from '@testing-library/user-event';