Files
n8n-enterprise-unlocked/packages/editor-ui/src/components/canvas/elements/buttons/CanvasClearExecutionDataButton.test.ts

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();
});
});