File tree 1 file changed +2
-2
lines changed
packages/cli/src/services
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ import { getProxyForUrl } from 'proxy-from-env'
10
10
import { httpOverHttp , httpsOverHttp , httpOverHttps , httpsOverHttps } from 'tunnel'
11
11
import { Archiver , create } from 'archiver'
12
12
import { glob } from 'glob'
13
- import { Parser } from './check-parser/parser '
13
+ import os from 'node:os '
14
14
import { checklyStorage } from '../rest/api'
15
15
import { loadFile } from './checkly-config-loader'
16
16
@@ -233,7 +233,7 @@ export async function bundlePlayWrightProject (playwrightConfig: string): Promis
233
233
const dir = path . resolve ( path . dirname ( playwrightConfig ) )
234
234
const filePath = path . resolve ( dir , playwrightConfig )
235
235
const pwtConfig = await loadFile ( filePath )
236
- const outputFolder = await fs . mkdtemp ( 'cli-' )
236
+ const outputFolder = await fs . mkdtemp ( path . join ( os . tmpdir ( ) , 'cli-' ) )
237
237
const outputDir = path . join ( outputFolder , 'playwright-project.tar.gz' )
238
238
const output = fsSync . createWriteStream ( outputDir )
239
239
You can’t perform that action at this time.
0 commit comments