mirror of
https://github.com/denoland/deno.git
synced 2024-11-23 15:16:54 -05:00
15 lines
574 B
TypeScript
15 lines
574 B
TypeScript
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
|
import { unitTest, assertThrowsAsync } from "./test_util.ts";
|
|
|
|
unitTest(async function permissionInvalidName(): Promise<void> {
|
|
await assertThrowsAsync(async () => {
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
await Deno.permissions.query({ name: "foo" as any });
|
|
}, Error);
|
|
});
|
|
|
|
unitTest(async function permissionNetInvalidUrl(): Promise<void> {
|
|
await assertThrowsAsync(async () => {
|
|
await Deno.permissions.query({ name: "net", url: ":" });
|
|
}, URIError);
|
|
});
|