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 6ed3a9e commit 6c7c2eaCopy full SHA for 6c7c2ea
src/test.ts
@@ -14,6 +14,8 @@ function normalizeLineEndings(text: string): string {
14
15
function compareToBaselines() {
16
for (const file of fs.readdirSync(baselineFolder)) {
17
+ if (file.startsWith(".")) return true
18
+
19
const baseline = normalizeLineEndings(fs.readFileSync(path.join(baselineFolder, file)).toString());
20
const generated = normalizeLineEndings(fs.readFileSync(path.join(outputFolder, file)).toString());
21
if (baseline !== generated) {
0 commit comments