difftreelog
Merge pull request #145 from usetech-llc/feature/NFTPAR-413_inflation
in: master
Fix pallet presence test
2 files changed
tests/package.jsondiffbeforeafterboth--- a/tests/package.json
+++ b/tests/package.json
@@ -51,7 +51,8 @@
"testSetOffchainSchema": "mocha --timeout 9999999 -r ts-node/register ./**/setOffchainSchema.test.ts",
"testOverflow": "mocha --timeout 9999999 -r ts-node/register ./**/overflow.test.ts",
"testSetVariableMetadataSponsoringRateLimit": "mocha --timeout 9999999 -r ts-node/register ./**/setVariableMetadataSponsoringRateLimit.test.ts",
- "testInflation": "mocha --timeout 9999999 -r ts-node/register ./**/inflation.test.ts"
+ "testInflation": "mocha --timeout 9999999 -r ts-node/register ./**/inflation.test.ts",
+ "testPalletPresence": "mocha --timeout 9999999 -r ts-node/register ./**/pallet-presence.test.ts"
},
"author": "",
"license": "SEE LICENSE IN ../LICENSE",
tests/src/pallet-presence.test.tsdiffbeforeafterboth131314// Pallets that must always be present14// Pallets that must always be present15const requiredPallets = [15const requiredPallets = [16 'nft', 'balances', 'contracts', 'randomnesscollectiveflip', 'system', 'timestamp', 'transactionpayment', 'treasury', 'vesting'16 'nft', 'inflation', 'balances', 'contracts', 'randomnesscollectiveflip', 'system', 'timestamp', 'transactionpayment', 'treasury', 'vesting'17];17];181819// Pallets that depend on consensus and governance configuration19// Pallets that depend on consensus and governance configuration