opencode-conductor-plugin
v1.30.2
Published
Conductor plugin for OpenCode
Maintainers
Readme
Testing
This project uses Vitest for testing.
Setup
Install dependencies:
npm installRunning Tests
Run all tests:
npm testRun tests in watch mode:
npm run test:watchRun tests with coverage:
npm run test:coverageTest Structure
Tests are located alongside the source files with the .test.ts extension:
src/tools/commands.test.ts- Tests for command tools
Writing Tests
Tests use Vitest's API with TypeScript support. Example:
import { describe, it, expect, vi } from "vitest"
describe("MyFeature", () => {
it("should work correctly", () => {
expect(true).toBe(true)
})
})