Bootstrap project

This commit is contained in:
Florent
2021-02-07 17:50:54 +01:00
committed by Florent F
parent ca871fa76f
commit 7f0a0785e6
9 changed files with 3168 additions and 33 deletions

9
tests/index-spec.ts Normal file
View 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);
});
});
});