This commit is contained in:
James Ives 2020-01-14 14:25:10 -05:00
parent 3ddbf41de7
commit 4a7ca37984

View File

@ -117,7 +117,7 @@ describe("git", () => {
describe("generateBranch", () => {
it("should execute five commands", async () => {
const call = await generateBranch();
expect(execute).toBeCalledTimes(5);
expect(execute).toBeCalledTimes(6);
expect(call).toBe("Deployment branch creation step complete... ✅");
});
});
@ -144,7 +144,7 @@ describe("git", () => {
const call = await deploy();
// Includes the call to generateBranch
expect(execute).toBeCalledTimes(17);
expect(execute).toBeCalledTimes(18);
expect(call).toBe("Commit step complete...");
});
});