Skip to content

Commit

Permalink
fix: clusterId issue in sample test(should list zones) (#684)
Browse files Browse the repository at this point in the history
  • Loading branch information
laljikanjareeya committed Apr 2, 2020
1 parent 2834e93 commit b92dfc5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion samples/test/instances.test.js
Expand Up @@ -43,7 +43,9 @@ describe('instances', () => {
after(() => instance.delete());

it('should list zones', () => {
const output = exec(`node instances.js run --instance ${instanceId}`);
const output = exec(
`node instances.js run --instance ${instanceId} --cluster ${clusterId}`
);
assert.include(output, 'Instances:');
assert.include(output, instanceId);
});
Expand Down

0 comments on commit b92dfc5

Please sign in to comment.