quartz/wallet/node_modules/@web-std/stream/test/node.spec.cjs
2022-03-04 20:05:23 +08:00

14 lines
207 B
JavaScript

const { test: libTest } = require("./lib.spec.cjs")
/**
* @typedef {uvu.Test} Test
*/
const test = async () => {
const { test } = await import("./test.js")
await libTest(test)
test.run()
}
test()