--- a/tests/src/pallet-presence.test.ts +++ b/tests/src/pallet-presence.test.ts @@ -23,6 +23,9 @@ 'parachainsystem', 'parachaininfo', 'evm', + 'evmcodersubstrate', + 'evmcontracthelpers', + 'evmtransactionpayment', 'ethereum', 'xcmpqueue', 'polkadotxcm', @@ -59,7 +62,7 @@ }); it('No extra pallets are included', async () => { await usingApi(async api => { - expect(getModuleNames(api).length).to.be.equal(requiredPallets.length + consensusPallets.length); + expect(getModuleNames(api).sort()).to.be.deep.equal([...requiredPallets, ...consensusPallets].sort()); }); }); });