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