Skip to main content
Module

x/oak/bundle_test.ts

A middleware framework for handling HTTP with Deno 🐿️ 🦕
Extremely Popular
Go to Latest
File
// Copyright 2018-2022 the oak authors. All rights reserved. MIT license.
import { isNode } from "./util.ts";
const BUNDLE = "./oak.bundle.js";
Deno.test({ name: "bundle can load", ignore: isNode(), async fn() { const { Application, Router } = await import(BUNDLE); const router = new Router(); const app = new Application(); app.use(router.routes()); },});