mirror of
https://github.com/google/earthengine-api.git
synced 2025-12-08 19:26:12 +00:00
11 lines
338 B
JavaScript
11 lines
338 B
JavaScript
window.ee = require('../build/browser');
|
|
const [token] = __karma__.config.args;
|
|
if (token) {
|
|
ee.apiclient.setAuthToken('', 'Bearer', token, 3600, [], undefined, false);
|
|
ee.apiclient.setCloudApiEnabled(true);
|
|
console.log('Testing Cloud API');
|
|
} else {
|
|
ee.apiclient.setCloudApiEnabled(false);
|
|
console.log('Testing Legacy API');
|
|
}
|