fix missing lifecycle updates

This commit is contained in:
Nik Graf 2016-12-01 16:44:12 +01:00
parent 9fc5dc8276
commit 29cdbd6de1
3 changed files with 3 additions and 3 deletions

View File

@ -29,7 +29,7 @@ serverless config credentials --provider provider --key key --secret secret
### Provided lifecycle events
- `config:credentials:credentials`
- `config:credentials:config`
### Examples

View File

@ -55,7 +55,7 @@ describe('AwsConfigCredentials', () => {
.to.be.true;
});
it('should have a "config:credentials:credentials" hook', () => {
it('should have a "config:credentials:config" hook', () => {
expect(awsConfigCredentials.hooks['config:credentials:config']).to.not.equal(undefined);
});

View File

@ -42,7 +42,7 @@ describe('Config', () => {
expect(config.commands.config.commands.credentials.options.provider.required).to.be.true;
});
it('should have a "before:config:credentials:credentials" hook', () => {
it('should have a "before:config:credentials:config" hook', () => {
expect(config.hooks['before:config:credentials:config']).to.not.equal(undefined);
});