Skip to main content
Module

x/cowsay/src/cows_test.ts

Configurable talking cow for Deno
Latest
File
import * as cows from "./cows.ts";import { assert } from "../test_deps.ts";
Deno.test({ name: "test_cows_listSync", fn(): void { const cow = cows.listSync(); assert(cow.indexOf("cow") > 0); },});