We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b940ee3 commit a1886a4Copy full SHA for a1886a4
1 file changed
scripts/dev-integration.mjs
@@ -6,10 +6,10 @@
6
// the API container coming up and Playwright times out the webServer probe.
7
8
import { spawn, spawnSync } from 'node:child_process';
9
-import { fileURLToPath } from 'node:url';
10
-import path from 'node:path';
11
-import { request as httpsRequest } from 'node:https';
12
import { request as httpRequest } from 'node:http';
+import { request as httpsRequest } from 'node:https';
+import path from 'node:path';
+import { fileURLToPath } from 'node:url';
13
14
const ROOT = path.resolve(path.dirname(fileURLToPath(import.meta.url)), '..');
15
const API_URL = process.env.VITE_API_PROXY_TARGET ?? 'https://localhost:5001';
0 commit comments