Skip to content
This repository was archived by the owner on Nov 22, 2024. It is now read-only.

Commit 43718ae

Browse files
committed
fix: 🐛 testing semantic release in circleci
1 parent c506316 commit 43718ae

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/__tests__/math.spec.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ describe("math", () => {
44
it("should define length function", () => {
55
expect(math.len({x: 3, y: 4})).toBe(5);
66
});
7+
78
it("should define diff function", () => {
89
expect(math.diff({x: 3, y: 4}, {x: 3, y: 4})).toEqual({x: 0, y: 0});
910
expect(math.diff({x: 1, y: 4}, {x: 3, y: 4})).toEqual({x: 2, y: 0});

0 commit comments

Comments
 (0)