From 429fdcd16f391a2c04b2a6718e63885e9af95c69 Mon Sep 17 00:00:00 2001 From: Simone Spaccarotella Date: Fri, 18 Jul 2025 17:37:21 +0100 Subject: [PATCH] Update --- src/algorithms/matrices.test.ts | 5 +++++ 1 file changed, 5 insertions(+) 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); });