File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
packages/selenium-ide/src/neo/stores/view Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -771,7 +771,7 @@ class PlaybackState {
771771 caller : this . currentRunningTest ,
772772 callee : testCase ,
773773 position : this . currentExecutingCommandNode ,
774- playbackOptions : PlaybackState . playbackOptions ,
774+ playbackOptions : this . playbackOptions ,
775775 } )
776776 UiState . selectTest (
777777 this . stackCaller ,
@@ -793,7 +793,9 @@ class PlaybackState {
793793 unwindTestCase ( ) {
794794 const top = this . callstack . pop ( )
795795 this . currentRunningTest = top . caller
796- this . playbackOptions = top . playbackOptions
796+ this . playbackOptions = {
797+ assertionsDisabled : ! ! top . playbackOptions . assertionsDisabled ,
798+ }
797799 this . setCurrentExecutingCommandNode ( top . position . next )
798800 this . runningQueue = top . caller . commands . slice ( )
799801 UiState . selectTest (
You can’t perform that action at this time.
0 commit comments