Skip to content

Commit 8ef902e

Browse files
committed
fix it
1 parent e7126d5 commit 8ef902e

File tree

1 file changed

+1
-3
lines changed
  • dev-packages/node-integration-tests/utils

1 file changed

+1
-3
lines changed

dev-packages/node-integration-tests/utils/runner.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -379,8 +379,6 @@ export function createRunner(...paths: string[]) {
379379
? runDockerCompose(dockerOptions)
380380
: Promise.resolve(undefined);
381381

382-
log('before start');
383-
384382
const startup = Promise.all([dockerStartup, serverStartup]) as Promise<[DockerStartup, ServerStartup]>;
385383

386384
startup
@@ -483,7 +481,7 @@ export function createRunner(...paths: string[]) {
483481
method: 'get' | 'post',
484482
path: string,
485483
headers: Record<string, string> = {},
486-
data?: any, // axios accept any as data
484+
data?: unknown,
487485
): Promise<T | undefined> {
488486
try {
489487
await waitFor(() => scenarioServerPort !== undefined);

0 commit comments

Comments
 (0)