summaryrefslogtreecommitdiffstats
path: root/devtools/client/webconsole/test/browser/browser_webconsole_worklet_error.js
blob: f17642e4574155144d966ab1a4c157c0321b0351 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

// Tests that syntax errors in worklet scripts show in the console and that
// throwing uncaught errors and primitive values in worklets shows a stack.

"use strict";

const TEST_URI =
  "https://example.com/browser/devtools/client/webconsole/" +
  "test/browser/test-error-worklet.html";

add_task(async function () {
  const hud = await openNewTabAndConsole(TEST_URI);

  await waitFor(() =>
    findErrorMessage(hud, "SyntaxError: duplicate formal argument")
  );
  ok(true, "Received expected SyntaxError");
  await checkMessageStack(hud, "addModule", [18, 21]);
  await checkMessageStack(hud, "process", [7, 12]);
});