Skip to content

Commit

Permalink
Run formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
MasterEvarior committed Nov 15, 2024
1 parent c5c9d59 commit 59b201f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ describe('MetricCheckInDirective', () => {
["200'000", 200000],
['1050&%ç*', 1050],
['-1', -1],
['-ç13&%', -13]
['-ç13&%', -13],
])('should parse value %s correctly to %s', (value: string, expected: number) => {
const mockOnChange = jest.fn();
const directive = new MetricCheckInDirective();
directive.registerOnChange(mockOnChange);

directive.handleInput(value);

expect(mockOnChange).toHaveBeenCalledWith(expected)
expect(mockOnChange).toHaveBeenCalledWith(expected);
});
});

0 comments on commit 59b201f

Please sign in to comment.