File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 17
17
"release:github-draft" : " ./ci/build/release-github-draft.sh" ,
18
18
"release:github-assets" : " ./ci/build/release-github-assets.sh" ,
19
19
"release:prep" : " ./ci/build/release-prep.sh" ,
20
- "test:e2e" : " VSCODE_DEV=1 VSCODE_IPC_HOOK_CLI= ./ci/dev/test-e2e.sh" ,
20
+ "test:e2e" : " VSCODE_IPC_HOOK_CLI= ./ci/dev/test-e2e.sh" ,
21
21
"test:standalone-release" : " ./ci/build/test-standalone-release.sh" ,
22
22
"test:unit" : " ./ci/dev/test-unit.sh --forceExit --detectOpenHandles" ,
23
23
"test:scripts" : " ./ci/dev/test-scripts.sh" ,
Original file line number Diff line number Diff line change @@ -4,10 +4,12 @@ function testBasicExtension() {
4
4
// This will only work if the test extension is loaded into code-server.
5
5
test ( "should have access to VSCODE_PROXY_URI" , async ( { codeServerPage } ) => {
6
6
const address = await codeServerPage . address ( )
7
+ console . log ( "running test" , address )
7
8
8
9
await codeServerPage . executeCommandViaMenus ( "code-server: Get proxy URI" )
9
10
10
- await codeServerPage . page . waitForSelector ( `text=${ address } /proxy/{port}` )
11
+ // Click span:has-text("https://localhost:57989/proxy/{{port}}")
12
+ await codeServerPage . page . waitForSelector ( `span:has-text("${ address } /proxy/{{port}}")` )
11
13
} )
12
14
}
13
15
You can’t perform that action at this time.
0 commit comments