You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
app.workbench.debug.waitForStackFrame(sf=>sf.name==='index.js'&&sf.lineNumber===6,'looking for index.js and line 6').then(c,e);
67
64
});
68
-
69
-
awaitapp.screenCapturer.capture('debugging is paused');
70
65
});
71
66
72
67
it('focus stack frames and variables',asyncfunction(){
@@ -88,15 +83,12 @@ export function setup() {
88
83
constapp=this.appasSpectronApplication;
89
84
90
85
awaitapp.workbench.debug.stepIn();
91
-
awaitapp.screenCapturer.capture('debugging has stepped in');
92
86
93
87
constfirst=awaitapp.workbench.debug.waitForStackFrame(sf=>sf.name==='response.js','looking for response.js');
94
88
awaitapp.workbench.debug.stepOver();
95
-
awaitapp.screenCapturer.capture('debugging has stepped over');
96
89
97
90
awaitapp.workbench.debug.waitForStackFrame(sf=>sf.name==='response.js'&&sf.lineNumber===first.lineNumber+1,`looking for response.js and line ${first.lineNumber+1}`);
98
91
awaitapp.workbench.debug.stepOut();
99
-
awaitapp.screenCapturer.capture('debugging has stepped out');
100
92
101
93
awaitapp.workbench.debug.waitForStackFrame(sf=>sf.name==='index.js'&&sf.lineNumber===7,`looking for index.js and line 7`);
102
94
});
@@ -105,15 +97,13 @@ export function setup() {
105
97
constapp=this.appasSpectronApplication;
106
98
107
99
awaitapp.workbench.debug.continue();
108
-
awaitapp.screenCapturer.capture('debugging has continued');
0 commit comments