mirror of
https://github.com/getwax/zk-account-abstraction.git
synced 2026-01-09 20:47:58 -05:00
* rename IWallet to IAccount (and all other contracts, e.g. SimpleWallet to SimpleAccount, etc..)
18 lines
596 B
TypeScript
18 lines
596 B
TypeScript
import { GasChecker } from './GasChecker'
|
|
|
|
context('simple account', function () {
|
|
this.timeout(60000)
|
|
const g = new GasChecker()
|
|
|
|
it('simple 1', async function () {
|
|
await g.addTestRow({ title: 'simple', count: 1, diffLastGas: false })
|
|
await g.addTestRow({ title: 'simple - diff from previous', count: 2, diffLastGas: true })
|
|
})
|
|
|
|
it('simple 10', async function () {
|
|
if (g.skipLong()) this.skip()
|
|
await g.addTestRow({ title: 'simple', count: 10, diffLastGas: false })
|
|
await g.addTestRow({ title: 'simple - diff from previous', count: 11, diffLastGas: true })
|
|
})
|
|
})
|