Skip to content

Commit 993cc4d

Browse files
committed
remove unused option
1 parent 1e433fc commit 993cc4d

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

dev-packages/e2e-tests/run.ts

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,7 @@ const DEFAULT_DSN = 'https://username@domain/123';
1010
const DEFAULT_SENTRY_ORG_SLUG = 'sentry-javascript-sdks';
1111
const DEFAULT_SENTRY_PROJECT = 'sentry-javascript-e2e-tests';
1212

13-
function asyncExec(
14-
command: string,
15-
options: { env: Record<string, string | undefined>; cwd: string; nodeVersion?: string },
16-
): Promise<void> {
13+
function asyncExec(command: string, options: { env: Record<string, string | undefined>; cwd: string }): Promise<void> {
1714
return new Promise((resolve, reject) => {
1815
const process = spawn(command, { ...options, shell: true });
1916

0 commit comments

Comments
 (0)