ci: Fix imports to fix build

Follow-up to https://github.com/n8n-io/n8n/pull/10847
This commit is contained in:
Iván Ovejero 2024-09-18 10:09:33 +02:00
parent 4f0a1a953f
commit 85aadc2c30
No known key found for this signature in database
3 changed files with 5 additions and 2 deletions

View file

@ -1,8 +1,9 @@
import { render } from '@testing-library/vue';
import AskAssistantChat from '../AskAssistantChat.vue';
import { n8nHtml } from 'n8n-design-system/directives';
import AskAssistantChat from '../AskAssistantChat.vue';
describe('AskAssistantChat', () => {
it('renders default placeholder chat correctly', () => {
const { container } = render(AskAssistantChat, {

View file

@ -1,8 +1,9 @@
import { render, fireEvent } from '@testing-library/vue';
import N8nMarkdown from '../Markdown.vue';
import { n8nHtml } from 'n8n-design-system/directives';
import N8nMarkdown from '../Markdown.vue';
describe('components', () => {
describe('N8nMarkdown', () => {
it('should render unchecked checkboxes', () => {

View file

@ -1,4 +1,5 @@
import { render } from '@testing-library/vue';
import { n8nHtml } from './n8n-html';
const TestComponent = {