Skip to content

Commit 3ebdfb3

Browse files
author
Luca Forstner
committed
Remove gitignore check
1 parent 2b1b136 commit 3ebdfb3

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

packages/e2e-tests/validate-test-app-setups.ts

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -26,21 +26,4 @@ testRecipePaths.forEach(testRecipePath => {
2626
);
2727
process.exit(1);
2828
}
29-
30-
const gitignorePath = path.resolve(testAppPath, '.gitignore');
31-
32-
if (!fs.existsSync(gitignorePath)) {
33-
console.log(
34-
`No .gitignore found in test application "${testAppPath}". Please add a .gitignore to this test application that ignores any kind of lockfiles. (More info in packages/e2e-tests/README.md)`,
35-
);
36-
process.exit(1);
37-
}
38-
39-
const gitignoreContents = fs.readFileSync(gitignorePath, 'utf-8');
40-
if (!gitignoreContents.includes('lock')) {
41-
console.log(
42-
`.gitignore in test application "${testAppPath} doesn't contain an entry for a lockfile. Please add a .gitignore to this test application that ignores any kind of lockfiles. (More info in packages/e2e-tests/README.md)`,
43-
);
44-
process.exit(1);
45-
}
4629
});

0 commit comments

Comments
 (0)