Skip to content

Commit fd2a3be

Browse files
test(validations): fix formatting alignment for date robustness tests
1 parent 18394e6 commit fd2a3be

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

lib/validations.test.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -656,7 +656,7 @@ describe('streakParamsSchema — Date Range Boundary Robustness (Variation 1)',
656656
// Arrange: Provide a mock payload missing a full YYYY format sequence
657657
const partialYearPayload = {
658658
user: 'octocat',
659-
from: '05-12',
659+
from: '05-12',
660660
to: '05-30',
661661
};
662662

@@ -674,7 +674,7 @@ describe('streakParamsSchema — Date Range Boundary Robustness (Variation 1)',
674674
it('should pass cleanly and fallback to default ranges when date bounds are completely omitted', () => {
675675
// Arrange: Pass only the bare minimum required parameters
676676
const minimalPayload = {
677-
user: 'octocat'
677+
user: 'octocat',
678678
};
679679

680680
// Act
@@ -687,4 +687,4 @@ describe('streakParamsSchema — Date Range Boundary Robustness (Variation 1)',
687687
expect(result.data.to).toBeUndefined();
688688
}
689689
});
690-
});
690+
});

0 commit comments

Comments
 (0)