1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/cli/tests/test_runner_test.ts

20 lines
394 B
TypeScript
Raw Normal View History

// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { assert } from "../../std/testing/asserts.ts";
Deno.test(function fail1() {
assert(false, "fail1 assertion");
});
Deno.test(function fail2() {
assert(false, "fail2 assertion");
});
Deno.test(function success1() {
assert(true);
});
Deno.test(function fail3() {
assert(false, "fail3 assertion");
});