1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
/* vim:set ts=2 sw=2 sts=2 et: */
/*
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/
*/
// Tests that console.group/groupEnd works as intended.
const TEST_URI = "data:text/html;charset=utf-8,Web Console test for bug 664131: Expand console object with group methods";
let test = asyncTest(function* () {
yield loadTab(TEST_URI);
let hud = yield openConsole();
let jsterm = hud.jsterm;
let outputNode = hud.outputNode;
hud.jsterm.clearOutput();
yield jsterm.execute("console.group('bug664131a')")
yield waitForMessages({
webconsole: hud,
messages: [{
text: "bug664131a",
consoleGroup: 1,
}],
});
yield jsterm.execute("console.log('bug664131a-inside')")
yield waitForMessages({
webconsole: hud,
messages: [{
text: "bug664131a-inside",
category: CATEGORY_WEBDEV,
severity: SEVERITY_LOG,
groupDepth: 1,
}],
});
yield jsterm.execute('console.groupEnd("bug664131a")');
yield jsterm.execute('console.log("bug664131-outside")');
yield waitForMessages({
webconsole: hud,
messages: [{
text: "bug664131-outside",
category: CATEGORY_WEBDEV,
severity: SEVERITY_LOG,
groupDepth: 0,
}],
});
yield jsterm.execute('console.groupCollapsed("bug664131b")');
yield waitForMessages({
webconsole: hud,
messages: [{
text: "bug664131b",
consoleGroup: 1,
}],
});
// Test that clearing the console removes the indentation.
hud.jsterm.clearOutput();
yield jsterm.execute('console.log("bug664131-cleared")');
yield waitForMessages({
webconsole: hud,
messages: [{
text: "bug664131-cleared",
category: CATEGORY_WEBDEV,
severity: SEVERITY_LOG,
groupDepth: 0,
}],
});
});
|