mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-10 03:28:26 +00:00
25 lines
906 B
TypeScript
25 lines
906 B
TypeScript
import { describe, expect } from "bun:test"
|
|
import { Effect } from "effect"
|
|
import { AppNodeBuilder } from "@opencode-ai/core/effect/app-node-builder"
|
|
import { SkillPlugin } from "@opencode-ai/core/plugin/skill"
|
|
import { SkillV2 } from "@opencode-ai/core/skill"
|
|
import { testEffect } from "../lib/effect"
|
|
import { host } from "./host"
|
|
|
|
const it = testEffect(AppNodeBuilder.build(SkillV2.node))
|
|
|
|
describe("SkillPlugin.Plugin", () => {
|
|
it.effect("registers the built-in customize-opencode skill", () =>
|
|
Effect.gen(function* () {
|
|
const skill = yield* SkillV2.Service
|
|
yield* SkillPlugin.Plugin.effect(host({ skill: { ...skill, reload: skill.reload } }))
|
|
|
|
expect(yield* skill.list()).toContainEqual(
|
|
expect.objectContaining({
|
|
name: "customize-opencode",
|
|
description: expect.stringContaining("opencode's own configuration"),
|
|
}),
|
|
)
|
|
}),
|
|
)
|
|
})
|