mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
14 lines
376 B
TypeScript
14 lines
376 B
TypeScript
import { render } from '@testing-library/vue';
|
|
import AssistantLoadingMessage from '../AssistantLoadingMessage.vue';
|
|
|
|
describe('AssistantLoadingMessage', () => {
|
|
it('renders loading message correctly', () => {
|
|
const { container } = render(AssistantLoadingMessage, {
|
|
props: {
|
|
loadingMessage: 'Thinking...',
|
|
},
|
|
});
|
|
expect(container).toMatchSnapshot();
|
|
});
|
|
});
|