mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08:00
ci: Fix imports to fix build
Follow-up to https://github.com/n8n-io/n8n/pull/10847
This commit is contained in:
parent
4f0a1a953f
commit
85aadc2c30
|
@ -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, {
|
||||
|
|
|
@ -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', () => {
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
import { render } from '@testing-library/vue';
|
||||
|
||||
import { n8nHtml } from './n8n-html';
|
||||
|
||||
const TestComponent = {
|
||||
|
|
Loading…
Reference in a new issue