test(builtin-commands): batch 10 (2 files)

This commit is contained in:
YeonGyu-Kim
2026-05-30 19:12:03 +09:00
parent 5f40ab9052
commit 486bc46305
2 changed files with 69 additions and 0 deletions
@@ -0,0 +1,16 @@
/// <reference path="../../../bun-test.d.ts" />
import { describe, expect, test } from "bun:test"
import { loadBuiltinCommands } from "./commands"
describe("init-deep skill migration", () => {
test("#given builtin commands #when loaded #then init-deep no longer ships as a command", () => {
// given
// when
const commands = loadBuiltinCommands()
// then
expect(commands["init-deep"]).toBeUndefined()
})
})