@@ -6,7 +6,7 @@ import chromedriver from 'chromedriver';
66import { switchMonitorTests , delay } from '../utils/e2e' ;
77
88const devPanelPath =
9- 'chrome-extension://lmhkpmbekcpmknklioeibfkpmmfibljd/window .html' ;
9+ 'chrome-extension://lmhkpmbekcpmknklioeibfkpmmfibljd/devpanel .html' ;
1010
1111describe ( 'DevTools panel for Electron' , function ( ) {
1212 let driver ;
@@ -76,7 +76,7 @@ describe('DevTools panel for Electron', function () {
7676 expect ( className ) . not . toMatch ( / h i d d e n / ) ; // not hidden
7777 } ) ;
7878
79- it . skip ( 'should have Redux DevTools UI on current tab' , async ( ) => {
79+ it ( 'should have Redux DevTools UI on current tab' , async ( ) => {
8080 await driver
8181 . switchTo ( )
8282 . frame (
@@ -87,7 +87,7 @@ describe('DevTools panel for Electron', function () {
8787 await delay ( 1000 ) ;
8888 } ) ;
8989
90- it . skip ( 'should contain INIT action' , async ( ) => {
90+ it ( 'should contain INIT action' , async ( ) => {
9191 const element = await driver . wait (
9292 webdriver . until . elementLocated (
9393 webdriver . By . xpath ( '//div[@data-testid="actionListRows"]' ) ,
@@ -99,15 +99,15 @@ describe('DevTools panel for Electron', function () {
9999 expect ( val ) . toMatch ( / @ @ I N I T / ) ;
100100 } ) ;
101101
102- it . skip ( "should contain Inspector monitor's component" , async ( ) => {
102+ it ( "should contain Inspector monitor's component" , async ( ) => {
103103 const val = await driver
104104 . findElement ( webdriver . By . xpath ( '//div[@data-testid="inspector"]' ) )
105105 . getText ( ) ;
106106 expect ( val ) . toBeDefined ( ) ;
107107 } ) ;
108108
109109 Object . keys ( switchMonitorTests ) . forEach ( ( description ) =>
110- it . skip ( description , ( ) => switchMonitorTests [ description ] ( driver ) ) ,
110+ it ( description , ( ) => switchMonitorTests [ description ] ( driver ) ) ,
111111 ) ;
112112
113113 /* it('should be no logs in console of main window', async () => {
0 commit comments