Skip to content

Commit 971951f

Browse files
chore: fix linting error
1 parent 749f7af commit 971951f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

utils/test-runner/src/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,8 @@ function testRunner(dir) {
3535
.filter(dir => fs.isDirectorySync(pathJoin(fixturesDir, dir)));
3636

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

4041
describe(pkgName, () => {
4142
for (const fixture of fixtures) {

0 commit comments

Comments
 (0)