File tree Expand file tree Collapse file tree 1 file changed +5
-9
lines changed
Expand file tree Collapse file tree 1 file changed +5
-9
lines changed Original file line number Diff line number Diff line change @@ -1261,24 +1261,20 @@ describe('Core', () => {
12611261 } )
12621262
12631263 it ( 'jumps up, jumps up and gets down' , async ( ) => {
1264- const debug = true
1265-
1266- const a = new lab . html . Screen ( { id : 'a' , debug } )
1267- const b = new lab . html . Screen ( { id : 'b' , debug } )
1268- const c = new lab . html . Screen ( { id : 'c' , debug } )
1269- const d = new lab . html . Screen ( { id : 'd' , debug } )
1264+ const a = new lab . html . Screen ( { id : 'a' } )
1265+ const b = new lab . html . Screen ( { id : 'b' } )
1266+ const c = new lab . html . Screen ( { id : 'c' } )
1267+ const d = new lab . html . Screen ( { id : 'd' } )
12701268
12711269 // Create an intermediate level
12721270 const s_nested = new lab . flow . Sequence ( {
12731271 id : 's_nested' ,
12741272 content : [ a , b , c , d ] ,
1275- debug,
12761273 } )
1277- const t = new lab . html . Screen ( { id : 't' , debug } )
1274+ const t = new lab . html . Screen ( { id : 't' } )
12781275 const s = new lab . flow . Sequence ( {
12791276 id : 's' ,
12801277 content : [ s_nested , t ] ,
1281- debug
12821278 } )
12831279
12841280 const jumpTo = async ( targetStack ) => {
You can’t perform that action at this time.
0 commit comments