Skip to main content
Module

x/alosaur/src/test.ts

Alosaur - Deno web framework with many decorators
Very Popular
Go to Latest
File
import { assert, assertEquals, test, runTests} from "./package_test.ts";
import * as mod from "./mod.ts";
// Future testsimport "./route/get-action.test.ts";
test(function testAlosaur() { assert(mod != null); assertEquals(typeof mod.App, "function");});
runTests();