Skip to content

Commit

Permalink
chore: fix linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolo-ribaudo committed May 6, 2022
1 parent 749f7af commit 971951f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion utils/test-runner/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ function testRunner(dir) {
.filter(dir => fs.isDirectorySync(pathJoin(fixturesDir, dir)));

const flags = parseArgs(process.argv);
const updateFixtures = !!process.env.OVERWRITE || Boolean(flags["update-fixtures"]);
const updateFixtures =
!!process.env.OVERWRITE || Boolean(flags["update-fixtures"]);

describe(pkgName, () => {
for (const fixture of fixtures) {
Expand Down

0 comments on commit 971951f

Please sign in to comment.