Skip to content

Commit

Permalink
commit to re run the workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
vishvamsinh28 committed Oct 19, 2024
1 parent a8d7765 commit 1c9446a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/build-tools.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,9 @@ describe('buildTools', () => {

await buildTools(automatedToolsPath, manualToolsPath, toolsPath, tagsPath);

const automatedToolsContent = JSON.parse(await fs.readFile(automatedToolsPath, 'utf8')); // Use fs.promises.readFile
const combinedToolsContent = JSON.parse(await fs.readFile(toolsPath, 'utf8')); // Use fs.promises.readFile
const tagsContent = JSON.parse(await fs.readFile(tagsPath, 'utf8')); // Use fs.promises.readFile
const automatedToolsContent = JSON.parse(await fs.readFile(automatedToolsPath, 'utf8'));
const combinedToolsContent = JSON.parse(await fs.readFile(toolsPath, 'utf8'));
const tagsContent = JSON.parse(await fs.readFile(tagsPath, 'utf8'));

expect(Object.keys(automatedToolsContent)).toEqual(Object.keys(mockConvertedData));
expect(automatedToolsContent["Category1"].description).toEqual(mockConvertedData["Category1"].description);
Expand Down

0 comments on commit 1c9446a

Please sign in to comment.