@@ -46,7 +46,9 @@ module.exports = (env, { port } = { port: '8080' }) => {
4646 await devServer . setLayout ( layout ) ;
4747 await devServer . setTheme ( theme ) ;
4848 await devServer . build ( ) ;
49+ console . log ( '-----build----->' ) ;
4950 await devServer . start ( ) ;
51+ console . log ( '-----start----->' ) ;
5052 } catch ( e ) {
5153 // NOTE jest@27 will fail test, but jest@26 - not
5254 console . log ( '----throw new Error------>' , e ) ;
@@ -62,6 +64,7 @@ module.exports = (env, { port } = { port: '8080' }) => {
6264 const viewport = viewports [ viewportName ] ;
6365
6466 async function openPage ( url , options ) {
67+ console . log ( '-------openPage--->' , url ) ;
6568 await page . goto ( 'about:blank' ) ;
6669 await page . setViewport ( viewport ) ;
6770 await page . goto ( url , {
@@ -157,7 +160,8 @@ module.exports = (env, { port } = { port: '8080' }) => {
157160 }
158161
159162 describe ( `${ viewportName } ` , ( ) => {
160- it ( 'Home view' , async ( ) => {
163+ fit ( 'Home view' , async ( ) => {
164+ console . log ( '---START TEST------>' ) ;
161165 await openPage ( appUrl , { timeout : 5000 } ) ;
162166 await page . reload ( [ {
163167 waitUntil : {
0 commit comments