git.delta.rocks / unique-network / refs/commits / 7ab778cd9629

difftreelog

test fix pallet list

Yaroslav Bolyukin2021-07-29parent: #cd2e9c1.patch.diff
in: master

1 file changed

modifiedtests/src/pallet-presence.test.tsdiffbeforeafterboth
23 'parachainsystem',23 'parachainsystem',
24 'parachaininfo',24 'parachaininfo',
25 'evm',25 'evm',
26 'evmcodersubstrate',
27 'evmcontracthelpers',
28 'evmtransactionpayment',
26 'ethereum',29 'ethereum',
27 'xcmpqueue',30 'xcmpqueue',
28 'polkadotxcm',31 'polkadotxcm',
59 });62 });
60 it('No extra pallets are included', async () => {63 it('No extra pallets are included', async () => {
61 await usingApi(async api => {64 await usingApi(async api => {
62 expect(getModuleNames(api).length).to.be.equal(requiredPallets.length + consensusPallets.length);65 expect(getModuleNames(api).sort()).to.be.deep.equal([...requiredPallets, ...consensusPallets].sort());
63 });66 });
64 });67 });
65});68});