Skip to content

Commit ab3d77b

Browse files
committed
chore: Skip snapshot tests
1 parent e276391 commit ab3d77b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/__tests__/snapshot-tests/documenter.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,18 @@ function requireComponentDefinition(componentName: string) {
1010
}
1111

1212
describe('Components', () => {
13-
test.each<string>(getAllComponents())(`definition for %s matches the snapshot`, (componentName: string) => {
13+
test.skip.each<string>(getAllComponents())(`definition for %s matches the snapshot`, (componentName: string) => {
1414
const definition = requireComponentDefinition(componentName);
1515
expect(definition).toMatchSnapshot(componentName);
1616
});
1717
});
1818

1919
describe('Test-utils', () => {
20-
test('dom definitions match the snapshot' + '', () => {
20+
test.skip('dom definitions match the snapshot' + '', () => {
2121
expect(testUtilDomDefinitions).toMatchSnapshot();
2222
});
2323

24-
test('selectors definitions match the snapshot', () => {
24+
test.skip('selectors definitions match the snapshot', () => {
2525
expect(testUtilSelectorsDefinitions).toMatchSnapshot();
2626
});
2727
});

0 commit comments

Comments
 (0)