Skip to content

Commit

Permalink
Fix tests w/ _GeneratedFiles.txt conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
SomeRanDev committed Feb 16, 2024
1 parent a40f797 commit 1644698
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/src/TestRunner.hx
Original file line number Diff line number Diff line change
Expand Up @@ -317,6 +317,9 @@ function compareOutputFolders(testDir: String): Bool {
final files = getAllFiles(intendedFolder, ignorePaths);
final errors = [];
for(f in files) {
// Ignore _GeneratedFiles.txt for now.
if(f == "_GeneratedFiles.txt") continue;

final intendedPath = haxe.io.Path.join([intendedFolder, f]);
final outPath = haxe.io.Path.join([outFolder, f]);
final err = compareFiles(intendedPath, outPath);
Expand Down

0 comments on commit 1644698

Please sign in to comment.