We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent faf3078 commit 843c3b9Copy full SHA for 843c3b9
packages/selenium-ide/src/neo/stores/view/PlaybackState.js
@@ -163,7 +163,9 @@ class PlaybackState {
163
}
164
165
@action.bound playNext() {
166
- clearVariables();
+ if (UiState.selectedTest.suite.isParallel) {
167
+ clearVariables();
168
+ }
169
this.currentRunningTest = this._testsToRun.shift();
170
UiState.selectTest(this.currentRunningTest, UiState.selectedTest.suite);
171
this.runningQueue = this.currentRunningTest.commands.peek();
0 commit comments