mirror of
https://github.com/Fission-AI/OpenSpec.git
synced 2026-09-14 20:16:53 +08:00
296ecbc20a
* fix windows ci test flake hardening * restore required test check status
11 lines
272 B
TypeScript
11 lines
272 B
TypeScript
import { ensureCliBuilt, terminateActiveCliChildren } from './test/helpers/run-cli.js';
|
|
|
|
// Ensure the CLI bundle exists before tests execute
|
|
export async function setup() {
|
|
await ensureCliBuilt();
|
|
}
|
|
|
|
export async function teardown() {
|
|
terminateActiveCliChildren();
|
|
}
|