delete-me/test/status.test.ts

11 lines
201 B
TypeScript
Raw Normal View History

2023-03-26 20:12:52 +00:00
import {cliTest} from './helper';
const args= "status "
describe("test status",() => {
it("get status",async ()=>{
const resp=cliTest(args);
expect(resp).toBeDefined;
});
});