laconic-registry-cli/test/status.test.ts

14 lines
242 B
TypeScript
Raw Normal View History

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