listener-rss/tests/index-spec.ts

10 lines
212 B
TypeScript
Raw Normal View History

2021-02-07 17:50:54 +01:00
const { expect } = require("chai");
describe("Calculator", function () {
describe("Add", function () {
it("Should return 3 when a = 1 and b = 2", () => {
expect(2 + 1).to.equal(3);
});
});
});