11 lines
201 B
TypeScript
11 lines
201 B
TypeScript
|
import {cliTest} from './helper';
|
||
|
|
||
|
const args= "status "
|
||
|
|
||
|
describe("test status",() => {
|
||
|
|
||
|
it("get status",async ()=>{
|
||
|
const resp=cliTest(args);
|
||
|
expect(resp).toBeDefined;
|
||
|
});
|
||
|
});
|