@@ -391,7 +391,7 @@ describe("FormData", () => {
391391 dispatchEvent ( wrapper , "dragenter" ) ;
392392 dispatchEvent ( wrapper , "drop" ) ;
393393 expect ( wrapper . emitted ( "alert" ) [ 0 ] [ 0 ] ) . toEqual (
394- "dataset is not a valid input for dataset collection parameter."
394+ "dataset is not a valid input for dataset collection parameter." ,
395395 ) ;
396396 } ) ;
397397
@@ -410,7 +410,7 @@ describe("FormData", () => {
410410 dispatchEvent ( wrapper , "dragenter" ) ;
411411 dispatchEvent ( wrapper , "drop" ) ;
412412 expect ( wrapper . emitted ( "alert" ) [ 0 ] [ 0 ] ) . toEqual (
413- "dataset pair dataset collection is not a valid input for list type dataset collection parameter."
413+ "dataset pair dataset collection is not a valid input for list type dataset collection parameter." ,
414414 ) ;
415415 } ) ;
416416
@@ -470,15 +470,14 @@ describe("FormData", () => {
470470 const checkLinked = wrapper . findComponent ( ".custom-switch" ) ;
471471 expect ( wrapper . find ( ".custom-switch span" ) . text ( ) ) . toContain ( "Linked:" ) ;
472472 expect ( wrapper . find ( ".custom-switch span" ) . text ( ) ) . toContain (
473- "Datasets will be run in matched order with other datasets."
473+ "Datasets will be run in matched order with other datasets." ,
474474 ) ;
475475 expect ( checkLinked . props ( ) . checked ) . toBeTruthy ( ) ;
476476 // Emit change event to uncheck the checkbox via Bootstrap-Vue component
477477 await checkLinked . vm . $emit ( "input" , false ) ;
478478 expect ( wrapper . find ( ".custom-switch span" ) . text ( ) ) . toContain ( "Unlinked:" ) ;
479479 expect ( wrapper . find ( ".custom-switch span" ) . text ( ) ) . toContain (
480- "Dataset will be run against *all* other datasets."
481-
480+ "Dataset will be run against *all* other datasets." ,
482481 ) ;
483482 expect ( wrapper . emitted ( "input" ) [ 4 ] [ 0 ] ) . toEqual ( {
484483 batch : true ,
0 commit comments