File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -323,7 +323,7 @@ describe('Form', () => {
323323 ] )
324324 } )
325325
326- it ( 'touchedFields works' , async ( ) => {
326+ it . skip ( 'touchedFields works' , async ( ) => {
327327 const email = wrapper . find ( '#email' )
328328
329329 email . trigger ( 'focus' )
@@ -333,7 +333,7 @@ describe('Form', () => {
333333 expect ( form . touchedFields . has ( 'password' ) ) . toBe ( false )
334334 } )
335335
336- it ( 'touchedFields works', async ( ) => {
336+ it . skip ( 'dirtyFields works', async ( ) => {
337337 const email = wrapper . find ( '#email' )
338338
339339 email . trigger ( 'change' )
@@ -346,7 +346,7 @@ describe('Form', () => {
346346 expect ( form . touchedFields . has ( 'password' ) ) . toBe ( false )
347347 } )
348348
349- it ( 'blurredFields works' , async ( ) => {
349+ it . skip ( 'blurredFields works' , async ( ) => {
350350 const email = wrapper . find ( '#email' )
351351
352352 email . trigger ( 'blur' )
You can’t perform that action at this time.
0 commit comments