blob: a2e72d4ea77195dd6364ec9a2f05671702dccba1 (
plain)
1
2
3
4
5
6
7
8
9
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import { assertThrows } from "./test_util.ts";
Deno.test({ permissions: "none" }, function websocketPermissionless() {
assertThrows(
() => new WebSocket("ws://localhost"),
Deno.errors.PermissionDenied,
);
});
|