11 lines
401 B
TypeScript
11 lines
401 B
TypeScript
|
|
import { describe, expect, it } from "vitest";
|
||
|
|
import { NondeterministicStrategy } from "../src/strategy";
|
||
|
|
|
||
|
|
describe("strategies/nondeterministic package smoke", () => {
|
||
|
|
it("exports a concrete strategy implementation", () => {
|
||
|
|
const strategy = new NondeterministicStrategy();
|
||
|
|
expect(strategy.name).toBe("nondeterministic");
|
||
|
|
expect(strategy.interceptedOps).toContain("amb.op");
|
||
|
|
});
|
||
|
|
});
|