delete-me/test/status.test.ts

12 lines
258 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);
2023-03-29 11:40:16 +00:00
expect(resp).toBeDefined();
2023-03-29 08:17:42 +00:00
expect(resp.node.network).toContain("laconic")
2023-03-26 20:12:52 +00:00
});
});