@@ -6,7 +6,7 @@ import chromedriver from 'chromedriver';
6
6
import { switchMonitorTests , delay } from '../utils/e2e' ;
7
7
8
8
const devPanelPath =
9
- 'chrome-extension://lmhkpmbekcpmknklioeibfkpmmfibljd/window .html' ;
9
+ 'chrome-extension://lmhkpmbekcpmknklioeibfkpmmfibljd/devpanel .html' ;
10
10
11
11
describe ( 'DevTools panel for Electron' , function ( ) {
12
12
let driver ;
@@ -76,7 +76,7 @@ describe('DevTools panel for Electron', function () {
76
76
expect ( className ) . not . toMatch ( / h i d d e n / ) ; // not hidden
77
77
} ) ;
78
78
79
- it . skip ( 'should have Redux DevTools UI on current tab' , async ( ) => {
79
+ it ( 'should have Redux DevTools UI on current tab' , async ( ) => {
80
80
await driver
81
81
. switchTo ( )
82
82
. frame (
@@ -87,7 +87,7 @@ describe('DevTools panel for Electron', function () {
87
87
await delay ( 1000 ) ;
88
88
} ) ;
89
89
90
- it . skip ( 'should contain INIT action' , async ( ) => {
90
+ it ( 'should contain INIT action' , async ( ) => {
91
91
const element = await driver . wait (
92
92
webdriver . until . elementLocated (
93
93
webdriver . By . xpath ( '//div[@data-testid="actionListRows"]' ) ,
@@ -99,15 +99,15 @@ describe('DevTools panel for Electron', function () {
99
99
expect ( val ) . toMatch ( / @ @ I N I T / ) ;
100
100
} ) ;
101
101
102
- it . skip ( "should contain Inspector monitor's component" , async ( ) => {
102
+ it ( "should contain Inspector monitor's component" , async ( ) => {
103
103
const val = await driver
104
104
. findElement ( webdriver . By . xpath ( '//div[@data-testid="inspector"]' ) )
105
105
. getText ( ) ;
106
106
expect ( val ) . toBeDefined ( ) ;
107
107
} ) ;
108
108
109
109
Object . keys ( switchMonitorTests ) . forEach ( ( description ) =>
110
- it . skip ( description , ( ) => switchMonitorTests [ description ] ( driver ) ) ,
110
+ it ( description , ( ) => switchMonitorTests [ description ] ( driver ) ) ,
111
111
) ;
112
112
113
113
/* it('should be no logs in console of main window', async () => {
0 commit comments