mirror of
https://github.com/serverless/serverless.git
synced 2026-01-25 15:07:39 +00:00
fix missing lifecycle updates
This commit is contained in:
parent
9fc5dc8276
commit
29cdbd6de1
@ -29,7 +29,7 @@ serverless config credentials --provider provider --key key --secret secret
|
||||
|
||||
### Provided lifecycle events
|
||||
|
||||
- `config:credentials:credentials`
|
||||
- `config:credentials:config`
|
||||
|
||||
### Examples
|
||||
|
||||
|
||||
@ -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);
|
||||
});
|
||||
|
||||
|
||||
@ -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);
|
||||
});
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user