blob: 89b3cc31fb5d37bf77022df8b6636d1001ca6710 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import { assertThrows, unitTest } from "./test_util.ts";
unitTest(function testFnOverloading() {
// just verifying that you can use this test definition syntax
Deno.test("test fn overloading", () => {});
});
unitTest(function nameOfTestCaseCantBeEmpty() {
assertThrows(
() => {
Deno.test("", () => {});
},
TypeError,
"The test name can't be empty",
);
assertThrows(
() => {
Deno.test({
name: "",
fn: () => {},
});
},
TypeError,
"The test name can't be empty",
);
});
|