Skip to content

Commit

Permalink
Update script.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
srmukher authored Nov 23, 2023
1 parent a91f484 commit 68c097d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools/UnitTestApp/script.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const fs = require('fs');
const readFilePath = './node_modules/@fluentui/react-charting/lib-commonjs/components/Sparkline/Sparkline.base.js';
const writeFilePath = './Sparkline/SparklineBase.js';
const readFilePath = '../node_modules/@fluentui/react-charting/lib-commonjs/components/Sparkline/Sparkline.base.js';
const writeFilePath = '../Sparkline/SparklineBase.js';
// Read the file
const updatedFile = () => {
fs.readFile(readFilePath, 'utf8', (err, data) => {
Expand All @@ -21,4 +21,4 @@ const updatedFile = () => {
});
};

updatedFile();
updatedFile();

0 comments on commit 68c097d

Please sign in to comment.