Skip to content

Commit 34f0254

Browse files
committed
linting fixes
1 parent e9beb4e commit 34f0254

File tree

1 file changed

+5
-1
lines changed
  • packages/nextjs/test/integration/test

1 file changed

+5
-1
lines changed

packages/nextjs/test/integration/test/runner.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,11 @@ const runScenario = async (scenario, execute, env) => {
5252
};
5353

5454
const runScenarios = async (scenarios, execute, env) => {
55-
return Promise.all(scenarios.map(scenario => runScenario(scenario, execute, env)));
55+
return Promise.all(
56+
scenarios.map(scenario => {
57+
return runScenario(scenario, execute, env);
58+
}),
59+
);
5660
};
5761

5862
module.exports.run = async ({

0 commit comments

Comments
 (0)