Skip to content

Commit db7b735

Browse files
committed
linting fixes
1 parent d27f45b commit db7b735

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

packages/hub/src/scope.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ export class Scope implements ScopeInterface {
9797
newScope._fingerprint = scope._fingerprint;
9898
newScope._eventProcessors = [...scope._eventProcessors];
9999
newScope._requestSession = scope._requestSession;
100-
(newScope as any)._parent = scope;
100+
newScope._parent = scope;
101101
}
102102
return newScope;
103103
}

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)