-
-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6a53b61
commit a1afe8b
Showing
2 changed files
with
10 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
import {Hook} from '@oclif/core' | ||
import {Hook} from '@oclif/core'; | ||
|
||
const hook: Hook<'command_not_found'> = async function (opts) { | ||
if(opts.id === "help"){ process.stdout.write(`help hook running ${opts.id}\n`)}; | ||
|
||
} | ||
if (opts.id === 'help') { process.stdout.write(`help hook running ${opts.id}\n`);} | ||
}; | ||
|
||
export default hook | ||
export default hook; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
import {expect, test} from '@oclif/test' | ||
import {expect, test} from '@oclif/test'; | ||
|
||
describe('hooks', () => { | ||
test | ||
.stdout() | ||
.hook('init', {id: 'mycommand'}) | ||
.do(output => expect(output.stdout).to.contain('example hook running mycommand')) | ||
.it('shows a message') | ||
}) | ||
.stdout() | ||
.hook('init', {id: 'mycommand'}) | ||
.do(output => expect(output.stdout).to.contain('example hook running mycommand')) | ||
.it('shows a message'); | ||
}); |