Skip to content

Commit 876b774

Browse files
committed
Fixes the verify loop
1 parent 6c7c2ea commit 876b774

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ function normalizeLineEndings(text: string): string {
1414

1515
function compareToBaselines() {
1616
for (const file of fs.readdirSync(baselineFolder)) {
17-
if (file.startsWith(".")) return true
17+
if (file.startsWith(".")) continue
1818

1919
const baseline = normalizeLineEndings(fs.readFileSync(path.join(baselineFolder, file)).toString());
2020
const generated = normalizeLineEndings(fs.readFileSync(path.join(outputFolder, file)).toString());

0 commit comments

Comments
 (0)