File tree Expand file tree Collapse file tree
src/__tests__/snapshot-tests Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,18 +10,18 @@ function requireComponentDefinition(componentName: string) {
1010}
1111
1212describe ( '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
1919describe ( '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} ) ;
You can’t perform that action at this time.
0 commit comments