Skip to content

Commit c7847a3

Browse files
Reduce debugging noise in in-browser automated tests
1 parent b52b92b commit c7847a3

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

packages/library/test/core.js

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff 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) => {

0 commit comments

Comments
 (0)