We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e7126d5 commit 8ef902eCopy full SHA for 8ef902e
dev-packages/node-integration-tests/utils/runner.ts
@@ -379,8 +379,6 @@ export function createRunner(...paths: string[]) {
379
? runDockerCompose(dockerOptions)
380
: Promise.resolve(undefined);
381
382
- log('before start');
383
-
384
const startup = Promise.all([dockerStartup, serverStartup]) as Promise<[DockerStartup, ServerStartup]>;
385
386
startup
@@ -483,7 +481,7 @@ export function createRunner(...paths: string[]) {
483
481
method: 'get' | 'post',
484
482
path: string,
485
headers: Record<string, string> = {},
486
- data?: any, // axios accept any as data
+ data?: unknown,
487
): Promise<T | undefined> {
488
try {
489
await waitFor(() => scenarioServerPort !== undefined);
0 commit comments