clean-architecture/test/Circle.test.ts

7 lines
183 B
TypeScript
Raw Normal View History

2023-09-14 00:40:54 +00:00
import Circle from "../src/Circle"
test("should calculate the area of circle", function () {
const circle = new Circle(2);
expect(circle.getArea()).toBe(12.566370614359172);
});