git.delta.rocks / unique-network / refs/commits / 3b05a74d6847

difftreelog

fix scheduling evm test

Daniel Shiposha2022-10-26parent: #11416fe.patch.diff
in: master

1 file changed

modifiedtests/src/eth/scheduling.test.tsdiffbeforeafterboth
15// along with Unique Network. If not, see <http://www.gnu.org/licenses/>.15// along with Unique Network. If not, see <http://www.gnu.org/licenses/>.
1616
17import {expect} from 'chai';17import {expect} from 'chai';
18import {EthUniqueHelper, itEth} from './util/playgrounds';18import {EthUniqueHelper, itEth} from './util';
19import {Pallets, usingPlaygrounds} from '../util/playgrounds';19import {Pallets, usingPlaygrounds} from '../util';
2020
21describe('Scheduing EVM smart contracts', () => {21describe('Scheduing EVM smart contracts', () => {
2222
27 });27 });
2828
29 itEth.ifWithPallets('Successfully schedules and periodically executes an EVM contract', [Pallets.Scheduler], async ({helper, privateKey}) => {29 itEth.ifWithPallets('Successfully schedules and periodically executes an EVM contract', [Pallets.Scheduler], async ({helper, privateKey}) => {
30 const alice = privateKey('//Alice');30 const alice = await privateKey('//Alice');
3131
32 const scheduledId = await helper.arrange.makeScheduledId();32 const scheduledId = await helper.arrange.makeScheduledId();
3333