UNPKG

@mariozechner/create-app

Version:

Project scaffolding for TypeScript applications and libraries

9 lines (8 loc) 323 B
import { test } from "node:test"; import assert from "node:assert"; test("Library builds", () => { // Since we're testing a browser library in Node.js, // we can't actually import it without DOM globals. // This test just ensures the test suite runs. assert.ok(true, "Build and test infrastructure works"); });