Skip to content

Commit 0f4ce00

Browse files
committed
test: update discovery credentials
1 parent 3f844d5 commit 0f4ce00

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

auth.js.enc

-992 Bytes
Binary file not shown.

test/integration/test.discovery.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ describe('discovery_integration', function() {
4949
assert.ifError(err);
5050
assert(Array.isArray(res.environments));
5151
assert(res.environments.length);
52-
assert(res.environments[0]);
53-
assert.equal(res.environments[0].environment_id, environment_id);
52+
const environment_ids = res.environments.map(e => e.environment_id);
53+
assert(environment_ids.includes(environment_id));
5454
done();
5555
});
5656
});

0 commit comments

Comments
 (0)