mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-26 22:34:06 -06:00
14 lines
207 B
JavaScript
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()
|