mirror of
https://github.com/rustfs/console.git
synced 2026-08-28 19:47:21 +08:00
10 lines
303 B
JavaScript
10 lines
303 B
JavaScript
import test from "node:test"
|
|
import assert from "node:assert/strict"
|
|
import fs from "node:fs"
|
|
|
|
test("task stats drawer trigger renders the button as its child", () => {
|
|
const source = fs.readFileSync("components/tasks/stats-button.tsx", "utf8")
|
|
|
|
assert.match(source, /<DrawerTrigger\s+asChild>/)
|
|
})
|