Skip to content

Commit d7b73d8

Browse files
committed
test: tighten live media plan assertion
1 parent 8aec682 commit d7b73d8

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

src/scripts/test-live-media.test.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,8 @@ describe("test-live-media", () => {
6666

6767
expect(plan).toHaveLength(1);
6868
const [entry] = plan;
69-
expect(entry).toMatchObject({
70-
suite: { id: "video" },
71-
providers: ["fal", "openai", "runway"],
72-
});
69+
expect(entry?.suite.id).toBe("video");
70+
expect(entry?.providers).toEqual(["fal", "openai", "runway"]);
7371
});
7472

7573
it("forwards quiet flags separately from passthrough args", async () => {

0 commit comments

Comments
 (0)