Skip to content

Commit e81b94a

Browse files
committed
test(core): fix expect that does not execute
1 parent 36d5a81 commit e81b94a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/core/test/exceptions/external-exceptions-handler.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ describe('ExternalExceptionsHandler', () => {
3434
expect((handler as any).filters).to.be.eql(filters);
3535
});
3636
it('should throws exception when passed argument is not an array', () => {
37-
expect(() => handler.setCustomFilters(null)).to.throw;
37+
expect(() => handler.setCustomFilters(null)).to.throw();
3838
});
3939
});
4040
describe('invokeCustomFilters', () => {

0 commit comments

Comments
 (0)