diff --git a/src/algorithms/matrices.test.ts b/src/algorithms/matrices.test.ts index c6233e5..ba0120e 100644 --- a/src/algorithms/matrices.test.ts +++ b/src/algorithms/matrices.test.ts @@ -9,6 +9,11 @@ describe("Matrix Operations", function () { [6, 8, 2, 3], ]; + // this test is for testing purposes of the coverage workflow + it("should have the same number of rows and columns", () => { + expect(matrix.length).to.equal(matrix[0].length); + }); + it("sum", () => { expect(sum(matrix)).equal(73); });