Skip to content

Commit ee479cd

Browse files
authored
chore: Skip documenter snapshots (#344)
1 parent 21d9d8a commit ee479cd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/__tests__/documenter.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { expect, test } from "vitest";
44

55
import { getAllComponents, requireComponentDefinition } from "./utils";
66

7-
test.each<string>(getAllComponents())(`definition for %s matches the snapshot`, (componentName: string) => {
7+
test.skip.each<string>(getAllComponents())(`definition for %s matches the snapshot`, (componentName: string) => {
88
const definition = requireComponentDefinition(componentName);
99
expect(definition).toMatchSnapshot(componentName);
1010
});

0 commit comments

Comments
 (0)