refactor(editor): Rename design-system unit test files and snapshots (no-changelog) (#11539)

This commit is contained in:
Alex Grozav
2024-11-05 14:20:02 +02:00
committed by GitHub
parent 63d454b776
commit 5ca781bf3a
152 changed files with 45 additions and 44 deletions

View File

@@ -0,0 +1,12 @@
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();
});
});