Skip to content

Commit 43fe8ce

Browse files
authored
Verify testing coverage workflow (#106)
1 parent 18afc9a commit 43fe8ce

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/algorithms/matrices.test.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ describe("Matrix Operations", function () {
99
[6, 8, 2, 3],
1010
];
1111

12+
// this test is for testing purposes of the coverage workflow
13+
it("should have the same number of rows and columns", () => {
14+
expect(matrix.length).to.equal(matrix[0].length);
15+
});
16+
1217
it("sum", () => {
1318
expect(sum(matrix)).equal(73);
1419
});

0 commit comments

Comments
 (0)