feat: initial commit

This commit is contained in:
Joao P Dubas
2023-09-14 00:40:54 +00:00
commit 895305f1a3
19 changed files with 22389 additions and 0 deletions

6
test/Circle.test.ts Normal file
View File

@@ -0,0 +1,6 @@
import Circle from "../src/Circle"
test("should calculate the area of circle", function () {
const circle = new Circle(2);
expect(circle.getArea()).toBe(12.566370614359172);
});