Так я люблю тестировать свои функции в классе. Я создаю папку test
в корне моего проекта и создаю какой-то файл classYouAreTesting.spec.ts
.
В этом файле у меня будет следующий код
//import whatever you need
describe("Birthday class tests", () => {
it("Today is my birthday", () => {
//birthday class initializes to some arbitrary date, let's say "01-01-1994"
const birthday = new Birthday();
//getBirthday will return a string representation of the date
const result = birthday.getBirthday();
expect(result).toEqual("01-01-1994");
});
});