Buckets:
| import { describe, expect } from "bun:test" | |
| import { Effect } from "effect" | |
| import { CommandV2 } from "@opencode-ai/core/command" | |
| import { ModelV2 } from "@opencode-ai/core/model" | |
| import { ProviderV2 } from "@opencode-ai/core/provider" | |
| import { testEffect } from "./lib/effect" | |
| const it = testEffect(CommandV2.locationLayer) | |
| describe("CommandV2", () => { | |
| it.effect("applies command transforms and preserves later overrides", () => | |
| Effect.gen(function* () { | |
| const command = yield* CommandV2.Service | |
| const transform = yield* command.transform() | |
| yield* transform((editor) => { | |
| editor.update("review", (command) => { | |
| command.template = "First" | |
| command.description = "Review code" | |
| }) | |
| editor.update("review", (command) => { | |
| command.template = "Second" | |
| command.model = { | |
| id: ModelV2.ID.make("claude"), | |
| providerID: ProviderV2.ID.make("anthropic"), | |
| variant: ModelV2.VariantID.make("high"), | |
| } | |
| }) | |
| }) | |
| expect(yield* command.get("review")).toEqual( | |
| new CommandV2.Info({ | |
| name: "review", | |
| template: "Second", | |
| description: "Review code", | |
| model: { | |
| id: ModelV2.ID.make("claude"), | |
| providerID: ProviderV2.ID.make("anthropic"), | |
| variant: ModelV2.VariantID.make("high"), | |
| }, | |
| }), | |
| ) | |
| expect(yield* command.list()).toEqual([ | |
| new CommandV2.Info({ | |
| name: "review", | |
| template: "Second", | |
| description: "Review code", | |
| model: { | |
| id: ModelV2.ID.make("claude"), | |
| providerID: ProviderV2.ID.make("anthropic"), | |
| variant: ModelV2.VariantID.make("high"), | |
| }, | |
| }), | |
| ]) | |
| }), | |
| ) | |
| }) | |
Xet Storage Details
- Size:
- 1.81 kB
- Xet hash:
- 58e0056a96ac21e04bd741712179b5c6626b84139982a1ec24f4d15a276b7ace
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.