summaryrefslogtreecommitdiffstats
path: root/remote/cdp/test/browser/runtime
diff options
context:
space:
mode:
Diffstat (limited to 'remote/cdp/test/browser/runtime')
-rw-r--r--remote/cdp/test/browser/runtime/browser_exceptionThrown.js7
-rw-r--r--remote/cdp/test/browser/runtime/browser_getProperties.js6
2 files changed, 6 insertions, 7 deletions
diff --git a/remote/cdp/test/browser/runtime/browser_exceptionThrown.js b/remote/cdp/test/browser/runtime/browser_exceptionThrown.js
index 23e6dc2de9..ad46ae25a9 100644
--- a/remote/cdp/test/browser/runtime/browser_exceptionThrown.js
+++ b/remote/cdp/test/browser/runtime/browser_exceptionThrown.js
@@ -76,12 +76,7 @@ add_task(async function eventsForScriptErrorWithException({ client }) {
is(callFrames[1].url, PAGE_CONSOLE_EVENTS, "Got expected url");
});
-async function runExceptionThrownTest(
- client,
- eventCount,
- callback,
- options = {}
-) {
+async function runExceptionThrownTest(client, eventCount, callback) {
const { Runtime } = client;
const EVENT_EXCEPTION_THROWN = "Runtime.exceptionThrown";
diff --git a/remote/cdp/test/browser/runtime/browser_getProperties.js b/remote/cdp/test/browser/runtime/browser_getProperties.js
index f897c3dfcd..f004480a22 100644
--- a/remote/cdp/test/browser/runtime/browser_getProperties.js
+++ b/remote/cdp/test/browser/runtime/browser_getProperties.js
@@ -102,7 +102,11 @@ async function testGetPrototypeProperties({ Runtime }, contextId) {
objectId: result.objectId,
ownProperties: false,
});
- ok(result2.length > 1, "We have more properties than just the object one");
+ Assert.greater(
+ result2.length,
+ 1,
+ "We have more properties than just the object one"
+ );
const foo = result2.find(p => p.name == "foo");
ok(foo, "The object property is described");
ok(foo.isOwn, "and is reported as 'own' property");