@vscode/test-web 0.0.42 → 0.0.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/out/server/download.js +0 -3
- package/package.json +5 -5
package/out/server/download.js
CHANGED
|
@@ -56,9 +56,6 @@ async function downloadAndUntar(downloadUrl, destination, message) {
|
|
|
56
56
|
}
|
|
57
57
|
async function downloadAndUnzipVSCode(quality, vscodeTestDir) {
|
|
58
58
|
const info = await getLatestVersion(quality);
|
|
59
|
-
if (!info.url.endsWith('.tar.gz')) {
|
|
60
|
-
throw new Error(`Unexpected download URL: ${info.url}. Should end with .tar.gz`);
|
|
61
|
-
}
|
|
62
59
|
const folderName = `vscode-web-${quality}-${info.version}`;
|
|
63
60
|
const downloadedPath = path.resolve(vscodeTestDir, folderName);
|
|
64
61
|
if ((0, fs_1.existsSync)(downloadedPath) && (0, fs_1.existsSync)(path.join(downloadedPath, 'version'))) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vscode/test-web",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.43",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"install-extensions": "yarn --cwd=fs-provider && yarn --cwd=sample",
|
|
6
6
|
"compile": "tsc -p ./ && yarn compile-fs-provider",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"koa-mount": "^4.0.0",
|
|
31
31
|
"koa-static": "^5.0.0",
|
|
32
32
|
"minimist": "^1.2.8",
|
|
33
|
-
"playwright": "^1.
|
|
33
|
+
"playwright": "^1.33.0",
|
|
34
34
|
"vscode-uri": "^3.0.7",
|
|
35
35
|
"http-proxy-agent": "^5.0.0",
|
|
36
36
|
"https-proxy-agent": "^5.0.1",
|
|
@@ -48,9 +48,9 @@
|
|
|
48
48
|
"@types/node": "16.x",
|
|
49
49
|
"@types/gunzip-maybe": "^1.4.0",
|
|
50
50
|
"@types/tar-fs": "^2.0.1",
|
|
51
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
52
|
-
"@typescript-eslint/parser": "^5.
|
|
53
|
-
"eslint": "^8.
|
|
51
|
+
"@typescript-eslint/eslint-plugin": "^5.59.1",
|
|
52
|
+
"@typescript-eslint/parser": "^5.59.1",
|
|
53
|
+
"eslint": "^8.39.0",
|
|
54
54
|
"eslint-plugin-header": "^3.1.1",
|
|
55
55
|
"typescript": "^5.0.4"
|
|
56
56
|
},
|