11 lines
264 B
TypeScript
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);
|
|
});
|
|
}); |