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
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at <http://mozilla.org/MPL/2.0/>. */
/*
* Tests that log points are correctly logged to the console
*/
"use strict";
add_task(async function () {
Services.prefs.setBoolPref("devtools.toolbox.splitconsoleEnabled", true);
const dbg = await initDebugger(
"doc-script-switching.html",
"script-switching-01.js"
);
const source = findSource(dbg, "script-switching-01.js");
await selectSource(dbg, "script-switching-01.js");
await getDebuggerSplitConsole(dbg);
await altClickElement(dbg, "gutter", 7);
await waitForBreakpoint(dbg, "script-switching-01.js", 7);
await dbg.actions.addBreakpoint(
getContext(dbg),
createLocation({ line: 8, source }),
{ logValue: "'a', 'b', 'c'" }
);
invokeInTab("firstCall");
await waitForPaused(dbg);
await hasConsoleMessage(dbg, "a b c");
await hasConsoleMessage(dbg, "firstCall");
const { link, value } = await findConsoleMessage(dbg, "a b c");
is(link, "script-switching-01.js:8:2", "logs should have the relevant link");
is(value, "a b c", "logs should have multiple values");
});
|