UNPKG

hana-cli

Version:
22 lines (16 loc) 571 B
// @ts-check import * as base from './base.js' describe('roles', function () { it("returns help output", function (done) { const localTest = base.myTest.bind(this) localTest("node bin/roles.js --help", done) }) it("returns normal output", function (done) { const localTest = base.myTest.bind(this) localTest("node bin/roles.js --quiet", done) }) it("returns output with limit", function (done) { const localTest = base.myTest.bind(this) localTest("node bin/roles.js -l 10 --quiet", done) }) })