Skip to content

Commit

Permalink
fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
HaidarJbeily7 committed Nov 3, 2024
1 parent c2a600c commit e8d417f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eo2js/test/commands/transpile.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ describe('transpile', function() {
transpile()
const transpiled = path.resolve(target, '8-transpile/com/eo2js/simple.xmir')
const firstModified = fs.statSync(transpiled).mtime
const wait = (ms) => new Promise(resolve => setTimeout(resolve, ms));
const wait = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
wait(100);
transpile()
const secondModified = fs.statSync(transpiled).mtime
Expand Down

0 comments on commit e8d417f

Please sign in to comment.