We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15d016d commit 5203f39Copy full SHA for 5203f39
2 files changed
packages/b2c-cli/test/commands/_test/index.test.ts
@@ -0,0 +1,9 @@
1
+import {runCommand} from '@oclif/test';
2
+import {expect} from 'chai';
3
+
4
+describe('_test', () => {
5
+ it('runs the smoke test command without errors', async () => {
6
+ const {error} = await runCommand('_test');
7
+ expect(error).to.be.undefined;
8
+ });
9
+});
packages/b2c-cli/test/commands/hello/index.test.ts
0 commit comments