mirror of
https://github.com/denoland/deno.git
synced 2024-12-14 03:23:17 -05:00
10 lines
176 B
TypeScript
10 lines
176 B
TypeScript
|
Deno.test("foo 1", () => {
|
||
|
throw new Error("foo 1 message");
|
||
|
});
|
||
|
|
||
|
Deno.test("foo 2", () => {});
|
||
|
|
||
|
Deno.test("foo 3", () => {
|
||
|
Promise.reject(new Error("foo 3 message"));
|
||
|
});
|