12 lines
258 B
TypeScript
12 lines
258 B
TypeScript
import {cliTest} from './helper';
|
|
|
|
const args= "status "
|
|
|
|
describe("test status",() => {
|
|
|
|
it("get status",async ()=>{
|
|
const resp=cliTest(args);
|
|
expect(resp).toBeDefined();
|
|
expect(resp.node.network).toContain("laconic")
|
|
});
|
|
}); |