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 b352ae0 commit 83b3e69Copy full SHA for 83b3e69
test/TestCases.test.js
@@ -85,7 +85,10 @@ describe('TestCases', () => {
85
const expectedDirectory = path.resolve(directoryForCase, 'expected');
86
87
for (const file of walkSync(expectedDirectory)) {
88
- const actualFilePath = path.resolve(outputDirectory, file);
+ const actualFilePath = file.replace(
89
+ expectedDirectory,
90
+ path.join(outputDirectory, directory)
91
+ );
92
const expectedContent = fs.readFileSync(file, 'utf-8');
93
const actualContent = fs.readFileSync(actualFilePath, 'utf-8');
94
0 commit comments