delete-me/test/auction.test.ts
2023-03-24 17:02:38 +05:30

11 lines
264 B
TypeScript

import {cliTest} from './helper';
const args= "auction "
describe("test auction",() => {
it("bid commit",async ()=>{
// const resp=JSON.parse(cliTest(args+" bid commit"));
// expect(resp).toBeDefined;
expect(0).toEqual(0);
});
});