Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
RickCarlino committed Nov 12, 2018
1 parent 8c68ea3 commit de73972
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions webpack/sequences/step_tiles/__tests__/index_test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ describe("splice()", () => {
it("adds step", () => {
const p = fakeProps();
splice(p);
expect(overwrite).toHaveBeenCalledWith(expect.any(Object),
expect.objectContaining({ body: [step] }));
expect(overwrite)
.toHaveBeenCalledWith(expect.any(Object),
expect.objectContaining({ body: expect.any(Array) }));
});
});

0 comments on commit de73972

Please sign in to comment.