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.
Deno.test({ name: "bundle can load", async fn() { const { Application, Router } = await import("./oak.bundle.js"); const router = new Router(); const app = new Application(); app.use(router.routes()); },});