@@ -46,7 +46,7 @@ describe("scripts/lib/docker-e2e-plan", () => {
|
46 | 46 | profile: RELEASE_PATH_PROFILE, |
47 | 47 | }); |
48 | 48 | |
49 | | -expect(plan.needs).toMatchObject({ |
| 49 | +expect(plan.needs).toEqual({ |
50 | 50 | bareImage: true, |
51 | 51 | e2eImage: true, |
52 | 52 | functionalImage: true, |
@@ -464,7 +464,7 @@ describe("scripts/lib/docker-e2e-plan", () => {
|
464 | 464 | const plan = planFor({ selectedLaneNames: ["live-models"] }); |
465 | 465 | |
466 | 466 | expect(plan.lanes.map((lane) => lane.name)).toEqual(["live-models"]); |
467 | | -expect(plan.needs).toMatchObject({ |
| 467 | +expect(plan.needs).toEqual({ |
468 | 468 | bareImage: false, |
469 | 469 | e2eImage: false, |
470 | 470 | functionalImage: false, |
@@ -487,8 +487,10 @@ describe("scripts/lib/docker-e2e-plan", () => {
|
487 | 487 | stateScenario: "empty", |
488 | 488 | }), |
489 | 489 | ]); |
490 | | -expect(plan.needs).toMatchObject({ |
| 490 | +expect(plan.needs).toEqual({ |
491 | 491 | bareImage: true, |
| 492 | +e2eImage: true, |
| 493 | +functionalImage: false, |
492 | 494 | liveImage: true, |
493 | 495 | package: true, |
494 | 496 | }); |
@@ -509,7 +511,8 @@ describe("scripts/lib/docker-e2e-plan", () => {
|
509 | 511 | resources: expect.arrayContaining(["docker", "live", "live:openai", "service"]), |
510 | 512 | }), |
511 | 513 | ]); |
512 | | -expect(plan.needs).toMatchObject({ |
| 514 | +expect(plan.needs).toEqual({ |
| 515 | +bareImage: false, |
513 | 516 | e2eImage: true, |
514 | 517 | functionalImage: true, |
515 | 518 | liveImage: false, |
@@ -677,8 +680,11 @@ describe("scripts/lib/docker-e2e-plan", () => {
|
677 | 680 | resources: expect.arrayContaining(["docker", "npm"]), |
678 | 681 | }), |
679 | 682 | ); |
680 | | -expect(plan.needs).toMatchObject({ |
| 683 | +expect(plan.needs).toEqual({ |
| 684 | +bareImage: false, |
| 685 | +e2eImage: true, |
681 | 686 | functionalImage: true, |
| 687 | +liveImage: false, |
682 | 688 | package: true, |
683 | 689 | }); |
684 | 690 | }); |
|