blob: 8e5726d4474d658d4bca9208237976877163003c (
plain)
1
2
3
4
5
6
7
8
9
|
// Copyright 2018-2020 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,
);
});
|