Skip to main content
Module

x/packup/bundle_util_test.ts

📦 Zero-config web application packager in Deno
Go to Latest
File
import { assertStringIncludes } from "./test_deps.ts";import { bundleByEsbuild, bundleBySwc } from "./bundle_util.ts";
Deno.test("bundleByEsbuild - bundles the script by esbuild", async () => { const bundle = await bundleByEsbuild("testdata/foo.js");
assertStringIncludes(bundle, `console.log("hi");`);});
Deno.test("bundleBySwc - bundles the script by swc", async () => { const bundle = await bundleBySwc("testdata/foo.js");
assertStringIncludes(bundle, `console.log("hi");`);});