@facets-cloud/facetsctlv3
Version:
18 lines (17 loc) • 517 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const test_1 = require("@oclif/test");
describe('login', () => {
test_1.test
.stdout()
.command(['login'])
.it('runs hello', ctx => {
(0, test_1.expect)(ctx.stdout).to.contain('hello world');
});
test_1.test
.stdout()
.command(['login', '--name', 'jeff'])
.it('runs hello --name jeff', ctx => {
(0, test_1.expect)(ctx.stdout).to.contain('hello jeff');
});
});