Skip to content

Commit e7e6259

Browse files
author
David Haeffner
committed
Added another explicit setting of this.paused = false, this time in abort. Helps fix part of an issue when trying to play a single test from the executing pane (instead all of the tests in the executing queue get run)
1 parent a6246ad commit e7e6259

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

packages/selenium-ide/src/neo/stores/view/PlaybackState.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,7 @@ class PlaybackState {
235235

236236
@action.bound
237237
playTestOrResume() {
238+
debugger
238239
if (this.paused) {
239240
return this.resume()
240241
} else if (!this.isPlaying) {
@@ -589,6 +590,7 @@ class PlaybackState {
589590
}
590591
this.stopPlayingGracefully()
591592
}
593+
this.paused = false
592594
this.commandTarget.doCleanup({ isTestAborted: this.aborted })
593595
}
594596

0 commit comments

Comments
 (0)