blob: e57f7627440d68783b02354cfcf4f7cac94b4e73 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
declTest("double register", {
async test() {
SimpleTest.doesThrow(
() =>
ChromeUtils.registerContentActor(
"TestProcessActor",
processActorOptions
),
"Should throw if register has duplicate name."
);
},
});
|