@@ -65,10 +65,12 @@ describe('Proxy support', function () {
6565 browser = compass . browser ;
6666
6767 const result = await browser . execute ( async function ( ) {
68- const response = await fetch ( 'http://compass.mongodb.com/' ) ;
68+ const response = await fetch ( 'http://proxy-test- compass.mongodb.com/' ) ;
6969 return await response . text ( ) ;
7070 } ) ;
71- expect ( result ) . to . equal ( 'hello, http://compass.mongodb.com/ (proxy1)' ) ;
71+ expect ( result ) . to . equal (
72+ 'hello, http://proxy-test-compass.mongodb.com/ (proxy1)'
73+ ) ;
7274 } ) ;
7375
7476 it ( 'can change the proxy option dynamically' , async function ( ) {
@@ -80,10 +82,12 @@ describe('Proxy support', function () {
8082 `http://localhost:${ port ( httpProxyServer2 ) } `
8183 ) ;
8284 const result = await browser . execute ( async function ( ) {
83- const response = await fetch ( 'http://compass.mongodb.com/' ) ;
85+ const response = await fetch ( 'http://proxy-test- compass.mongodb.com/' ) ;
8486 return await response . text ( ) ;
8587 } ) ;
86- expect ( result ) . to . equal ( 'hello, http://compass.mongodb.com/ (proxy2)' ) ;
88+ expect ( result ) . to . equal (
89+ 'hello, http://proxy-test-compass.mongodb.com/ (proxy2)'
90+ ) ;
8791 } ) ;
8892
8993 context ( 'when connecting to a cluster' , function ( ) {
0 commit comments