@@ -9,18 +9,20 @@ exports.config = {
99 /* UWP controls are a subset of the Win32 controls. Only some work on our UWP test app,
1010 so we must specify which ones we want to test here. */
1111 specs : [
12- 'src/ActivityIndicator/specs/*.win.ts' ,
13- 'src/ButtonLegacy/specs/*.win.ts' ,
14- 'src/CheckboxLegacy/specs/*.win.ts' , // See spec file for more information
15- 'src/LinkLegacy/specs/*.win.ts' ,
16- 'src/PersonaCoin/specs/*.win.ts' ,
17- 'src/Pressable/specs/*.win.ts' ,
18- 'src/Separator/specs/*.win.ts' ,
19- 'src/TabsLegacy/specs/*.windows.ts' , // See spec file for more information
20- 'src/TextLegacy/specs/*.win.ts' ,
21- 'src/TextV1/specs/*.win.ts' ,
22- 'src/Theme/specs/*.win.ts' ,
23- 'src/Tokens/specs/*.win.ts' ,
12+ [
13+ 'src/ActivityIndicator/specs/*.win.ts' ,
14+ 'src/ButtonLegacy/specs/*.win.ts' ,
15+ 'src/CheckboxLegacy/specs/*.win.ts' , // See spec file for more information
16+ 'src/LinkLegacy/specs/*.win.ts' ,
17+ 'src/PersonaCoin/specs/*.win.ts' ,
18+ 'src/Pressable/specs/*.win.ts' ,
19+ 'src/Separator/specs/*.win.ts' ,
20+ 'src/TabsLegacy/specs/*.windows.ts' , // See spec file for more information
21+ 'src/TextLegacy/specs/*.win.ts' ,
22+ 'src/TextV1/specs/*.win.ts' ,
23+ 'src/Theme/specs/*.win.ts' ,
24+ 'src/Tokens/specs/*.win.ts' ,
25+ ] ,
2426 ] ,
2527 exclude : [
2628 /* 'path/to/excluded/files' */
@@ -160,7 +162,7 @@ exports.config = {
160162 */
161163 afterTest : ( test , context , results ) => {
162164 const resultString = results . passed ? 'Passed' : 'Failed' ;
163- console . log ( `\nTest Case: "${ test . description } ".\nResult: "${ resultString } ".\nDuration: "${ ( results . duration / 600 ) . toFixed ( 2 ) } s". \n` ) ;
165+ console . log ( `\nTest Case: "${ test . description } ".\nResult: "${ resultString } ".\nDuration: "${ ( results . duration / 600 ) . toFixed ( 2 ) } s". \n` ) ;
164166
165167 // if test passed, ignore, else take and save screenshot.
166168 if ( results . passed ) {
0 commit comments