From 59b201f03bb296968fe77da9cf0aed6a54941adc Mon Sep 17 00:00:00 2001 From: Giannin Date: Fri, 15 Nov 2024 07:33:44 +0100 Subject: [PATCH] Run formatter --- .../check-in-form-metric/metric-check-in-directive.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/app/components/checkin/check-in-form-metric/metric-check-in-directive.spec.ts b/frontend/src/app/components/checkin/check-in-form-metric/metric-check-in-directive.spec.ts index 92ef1500bd..acd3577f2e 100644 --- a/frontend/src/app/components/checkin/check-in-form-metric/metric-check-in-directive.spec.ts +++ b/frontend/src/app/components/checkin/check-in-form-metric/metric-check-in-directive.spec.ts @@ -12,7 +12,7 @@ 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(); @@ -20,6 +20,6 @@ describe('MetricCheckInDirective', () => { directive.handleInput(value); - expect(mockOnChange).toHaveBeenCalledWith(expected) + expect(mockOnChange).toHaveBeenCalledWith(expected); }); });