delete-me/test/auction.test.ts

11 lines
264 B
TypeScript
Raw Normal View History

2023-03-24 11:32:38 +00:00
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);
});
});