@@ -284,25 +284,25 @@ it('check all test reports exists', async () => {
284284 expect ( existenceResults . every ( result => result === true ) ) . to . be . true ;
285285} ) . timeout ( 10000 ) ;
286286
287- it ( 'View latest Unit test report when all the reports exists' , async ( ) => {
288- const outputView = await new BottomBarPanel ( ) . openOutputView ( ) ;
289- outputView . clearText ( ) ;
290- await utils . launchDashboardAction ( item , constants . UTR_DASHABOARD_ACTION , constants . UTR_DASHABOARD_MAC_ACTION ) ;
291- await outputView . selectChannel ( "My Extension Output" ) ;
292- const text = await outputView . getText ( ) ;
293- assert ( text . includes ( '/target/reports/surefire.html' ) ) ;
294- await utils . closeEditor ( ) ;
295- } ) . timeout ( 10000 ) ;
296-
297- it ( 'View latest Integration test report when all the reports exists' , async ( ) => {
298- const outputView = await new BottomBarPanel ( ) . openOutputView ( ) ;
299- outputView . clearText ( ) ;
300- await utils . launchDashboardAction ( item , constants . ITR_DASHBOARD_ACTION , constants . ITR_DASHBOARD_MAC_ACTION ) ;
301- await outputView . selectChannel ( "My Extension Output" ) ;
302- const text = await outputView . getText ( ) ;
303- assert ( text . includes ( '/target/reports/failsafe.html' ) ) ;
304- await utils . closeEditor ( ) ;
305- } ) . timeout ( 10000 ) ;
287+ it ( 'View latest Unit test report when all the reports exists' , async ( ) => {
288+ const outputView = await new BottomBarPanel ( ) . openOutputView ( ) ;
289+ outputView . clearText ( ) ;
290+ await utils . launchDashboardAction ( item , constants . UTR_DASHABOARD_ACTION , constants . UTR_DASHABOARD_MAC_ACTION ) ;
291+ await outputView . selectChannel ( "Liberty tools Extension Output" ) ;
292+ const text = await outputView . getText ( ) ;
293+ assert ( text . includes ( '/target/reports/surefire.html' ) ) ;
294+ await utils . closeEditor ( ) ;
295+ } ) . timeout ( 10000 ) ;
296+
297+ it ( 'View latest Integration test report when all the reports exists' , async ( ) => {
298+ const outputView = await new BottomBarPanel ( ) . openOutputView ( ) ;
299+ outputView . clearText ( ) ;
300+ await utils . launchDashboardAction ( item , constants . ITR_DASHBOARD_ACTION , constants . ITR_DASHBOARD_MAC_ACTION ) ;
301+ await outputView . selectChannel ( "Liberty tools Extension Output" ) ;
302+ const text = await outputView . getText ( ) ;
303+ assert ( text . includes ( '/target/reports/failsafe.html' ) ) ;
304+ await utils . closeEditor ( ) ;
305+ } ) . timeout ( 10000 ) ;
306306
307307it ( 'View Unit test report for maven project with surefire 3.4.0' , async ( ) => {
308308
0 commit comments