Skip to content

Commit b24cc9a

Browse files
style: auto-fix linting issues
1 parent a83019a commit b24cc9a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/scripts/generate-schemas.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,9 @@ describe('Schema Generation Script', () => {
9595
expect(content).toContain('export');
9696
expect(content).toContain('DO NOT EDIT MANUALLY');
9797
// Match timestamp with flexible whitespace/line breaks (handle Windows \r\n)
98-
expect(content).toMatch(/Generated on:[\s\r\n]*\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}Z/);
98+
expect(content).toMatch(
99+
/Generated on:[\s\r\n]*\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}Z/
100+
);
99101
});
100102
});
101103

0 commit comments

Comments
 (0)