mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
27 lines
640 B
TypeScript
27 lines
640 B
TypeScript
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
|
import { assertThrows, unitTest } from "./test_util.ts";
|
|
|
|
unitTest(function testFnOverloading(): void {
|
|
// just verifying that you can use this test definition syntax
|
|
Deno.test("test fn overloading", (): void => {});
|
|
});
|
|
|
|
unitTest(function nameOfTestCaseCantBeEmpty(): void {
|
|
assertThrows(
|
|
() => {
|
|
Deno.test("", () => {});
|
|
},
|
|
TypeError,
|
|
"The test name can't be empty",
|
|
);
|
|
assertThrows(
|
|
() => {
|
|
Deno.test({
|
|
name: "",
|
|
fn: () => {},
|
|
});
|
|
},
|
|
TypeError,
|
|
"The test name can't be empty",
|
|
);
|
|
});
|