feature #1

Merged
wellingtonCarlos merged 11 commits from feature into master 2022-11-02 18:10:07 +00:00
Showing only changes of commit 04733cc127 - Show all commits

View File

@ -44,6 +44,6 @@ describe("sum", () => {
});
it("Dever retornar -40 quando passamos o array [-2, -7, -31]", () => {
expect(sum([-2, -7, -31])).toBe(-51);
expect(sum([-2, -7, -31])).toBe(-40);
})
});