Skip to content

Commit

Permalink
Update color.test.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
asamuzaK committed Jan 16, 2025
1 parent bc2dc71 commit c578283
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions test/color.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,8 +177,11 @@ describe('transform matrix', () => {
});

it('should throw', () => {
assert.throws(() => func(['foo', [], []]), TypeError,
'foo is not an array.');
assert.throws(
() => func(['foo', [], []]),
TypeError,
'foo is not an array.'
);
});

it('should throw', () => {
Expand Down

0 comments on commit c578283

Please sign in to comment.