Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: os == 'android'
- Manifest: browser/modules/test/unit/xpcshell.toml
/* Any copyright is dedicated to the Public Domain.
*/
"use strict";
const { LinksCache } = ChromeUtils.importESModule(
"resource:///modules/LinksCache.sys.mjs"
);
add_task(async function test_LinksCache_throws_on_failing_request() {
const cache = new LinksCache();
let rejected = false;
try {
await cache.request();
} catch (error) {
rejected = true;
}
Assert.ok(rejected, "The request should throw an error when failing.");
});