mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 01:26:44 +00:00
13 lines
409 B
TypeScript
13 lines
409 B
TypeScript
import { createComponentRenderer } from '@/__tests__/render';
|
|
import CanvasClearExecutionDataButton from './CanvasClearExecutionDataButton.vue';
|
|
|
|
const renderComponent = createComponentRenderer(CanvasClearExecutionDataButton);
|
|
|
|
describe('CanvasClearExecutionDataButton', () => {
|
|
it('should render correctly', () => {
|
|
const wrapper = renderComponent();
|
|
|
|
expect(wrapper.html()).toMatchSnapshot();
|
|
});
|
|
});
|