Skip to content

Commit

Permalink
Fixed lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Rondineli committed Dec 9, 2018
1 parent 2a25f0f commit bfbb151
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions test/test.js
Expand Up @@ -30,18 +30,17 @@ describe ('Integration with stage option', () => {
describe ('Testing retrieving data from vault', () => {
const app = new App({}, {});
const hooks = Object.keys(app.hooks);
const commands = Object.keys(app.commands)
const commands = Object.keys(app.commands);

it('Checking configs', () => {
expect(hooks).to.eql(['before:package:initialize', 'before:vault:vault']);

});

it('Checking commands', () => {
console.log(commands)
expect(commands).to.eql([ 'vault' ]);
expect(app.commands.vault.usage).to.have.string('It will get your secrets from vault and upload secretly to kms')
expect(app.commands.vault.lifecycleEvents).to.eql(['vault'])
expect(app.commands.vault.usage).to.have.string('It will get your secrets from vault and upload secretly to kms');
expect(app.commands.vault.lifecycleEvents).to.eql(['vault']);

});

Expand Down

0 comments on commit bfbb151

Please sign in to comment.