We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1e433fc commit 993cc4dCopy full SHA for 993cc4d
dev-packages/e2e-tests/run.ts
@@ -10,10 +10,7 @@ const DEFAULT_DSN = 'https://username@domain/123';
10
const DEFAULT_SENTRY_ORG_SLUG = 'sentry-javascript-sdks';
11
const DEFAULT_SENTRY_PROJECT = 'sentry-javascript-e2e-tests';
12
13
-function asyncExec(
14
- command: string,
15
- options: { env: Record<string, string | undefined>; cwd: string; nodeVersion?: string },
16
-): Promise<void> {
+function asyncExec(command: string, options: { env: Record<string, string | undefined>; cwd: string }): Promise<void> {
17
return new Promise((resolve, reject) => {
18
const process = spawn(command, { ...options, shell: true });
19
0 commit comments