File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -633,7 +633,7 @@ class Connection {
633
633
} ) ;
634
634
case 'stream' :
635
635
return new Promise ( ( _ , reject ) => {
636
- var chunks = "" ;
636
+ var chunks = [ ] ;
637
637
error . response . data . on ( "data" , chunk => chunks . push ( chunk ) ) ;
638
638
readStream . on ( "error" , ( ) => reject ( error ) ) ;
639
639
readStream . on ( "end" , ( ) => reject ( JSON . parse ( Buffer . concat ( chunks ) . toString ( ) ) ) ) ;
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ const waitForExpect = require("wait-for-expect");
4
4
jest . setTimeout ( 60000 ) ; // Give Google some time to process data
5
5
6
6
describe ( 'With earth-engine-driver' , ( ) => {
7
- const TESTBACKEND = 'http ://127.0.0.1:8080 ' ;
7
+ const TESTBACKEND = 'https ://earthengine.openeo.org ' ;
8
8
const TESTBACKENDDIRECT = TESTBACKEND + '/v0.4' ;
9
9
const TESTUSERNAME = 'group5' ;
10
10
const TESTPASSWORD = 'test123' ;
You can’t perform that action at this time.
0 commit comments