Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: display == 'wayland'
- Manifest: remote/cdp/test/browser/browser.toml
/* Any copyright is dedicated to the Public Domain.
"use strict";
add_task(async function ({ CDP }) {
const { webSocketDebuggerUrl } = await CDP.Version();
const client = await CDP({ target: webSocketDebuggerUrl });
await Assert.rejects(
client.send("Hoobaflooba"),
/Invalid method format/,
`Fails with invalid method format`
);
await Assert.rejects(
client.send("Hooba.flooba"),
/UnknownMethodError/,
`Fails with UnknownMethodError`
);
await client.close();
});