mirror of
https://github.com/denoland/deno.git
synced 2024-11-28 16:20:57 -05:00
11 lines
307 B
TypeScript
11 lines
307 B
TypeScript
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
|
|
// deno-lint-ignore-file no-deprecated-deno-api
|
|
|
|
import { assertThrows } from "./test_util.ts";
|
|
|
|
Deno.test(function resourcesCloseBadArgs() {
|
|
assertThrows(() => {
|
|
Deno.close((null as unknown) as number);
|
|
}, TypeError);
|
|
});
|