Bootstrap project
This commit is contained in:
9
tests/index-spec.ts
Normal file
9
tests/index-spec.ts
Normal file
@ -0,0 +1,9 @@
|
||||
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);
|
||||
});
|
||||
});
|
||||
});
|
Reference in New Issue
Block a user