blob: 6af2d4b1db58807b93604b5776812e61ef69a9d9 (
plain)
1
2
3
4
5
6
7
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import wasi from "node:wasi";
import { assertThrows } from "@std/assert";
Deno.test("[node/wasi] - WASI should throw (not implemented)", () => {
assertThrows(() => new wasi.WASI());
});
|