We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c7c2ea commit 876b774Copy full SHA for 876b774
src/test.ts
@@ -14,7 +14,7 @@ function normalizeLineEndings(text: string): string {
14
15
function compareToBaselines() {
16
for (const file of fs.readdirSync(baselineFolder)) {
17
- if (file.startsWith(".")) return true
+ if (file.startsWith(".")) continue
18
19
const baseline = normalizeLineEndings(fs.readFileSync(path.join(baselineFolder, file)).toString());
20
const generated = normalizeLineEndings(fs.readFileSync(path.join(outputFolder, file)).toString());
0 commit comments