git.delta.rocks / unique-network / refs/commits / 50b90e43c9ab

difftreelog

Merge pull request #169 from UniqueNetwork/fix/pallet-presence

kozyrevdev2021-07-29parents: #cd2e9c1 #7ab778c.patch.diff
in: master
Add missing pallets to pallet presence test

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});