Skip to content

Commit

Permalink
Clean up test
Browse files Browse the repository at this point in the history
  • Loading branch information
acuarica committed Jan 16, 2024
1 parent 524f8cd commit 4446a20
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions test/evm.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,14 +85,11 @@ describe('::evm', function () {
}
}`;
const evm = EVM.new(compile(src, '0.7.6', this, { optimizer: { enabled: true } }).bytecode);
// const main =
// evm.start();
const state = new State<Inst, Expr>();
evm.exec(19, state);
// console.log(state.stmts);
// console.log(state.stack);
// console.log(evm.errors);
evm.start();

expect(evm.step.functionBranches).to.be.empty;
expect(evm.errors).to.be.empty;
// expect(cfg(evm)).to.matchSnapshot('mermaid', this);
});

it('should create ', function () {
Expand Down

0 comments on commit 4446a20

Please sign in to comment.