git.delta.rocks / unique-network / refs/commits / b8ab3663a313

difftreelog

Merge pull request #145 from usetech-llc/feature/NFTPAR-413_inflation

Yaroslav Bolyukin2021-04-08parents: #8cfbb8c #0b68862.patch.diff
in: master
Fix pallet presence test

2 files changed

modifiedtests/package.jsondiffbeforeafterboth
51 "testSetOffchainSchema": "mocha --timeout 9999999 -r ts-node/register ./**/setOffchainSchema.test.ts",51 "testSetOffchainSchema": "mocha --timeout 9999999 -r ts-node/register ./**/setOffchainSchema.test.ts",
52 "testOverflow": "mocha --timeout 9999999 -r ts-node/register ./**/overflow.test.ts",52 "testOverflow": "mocha --timeout 9999999 -r ts-node/register ./**/overflow.test.ts",
53 "testSetVariableMetadataSponsoringRateLimit": "mocha --timeout 9999999 -r ts-node/register ./**/setVariableMetadataSponsoringRateLimit.test.ts",53 "testSetVariableMetadataSponsoringRateLimit": "mocha --timeout 9999999 -r ts-node/register ./**/setVariableMetadataSponsoringRateLimit.test.ts",
54 "testInflation": "mocha --timeout 9999999 -r ts-node/register ./**/inflation.test.ts"54 "testInflation": "mocha --timeout 9999999 -r ts-node/register ./**/inflation.test.ts",
55 "testPalletPresence": "mocha --timeout 9999999 -r ts-node/register ./**/pallet-presence.test.ts"
55 },56 },
56 "author": "",57 "author": "",
57 "license": "SEE LICENSE IN ../LICENSE",58 "license": "SEE LICENSE IN ../LICENSE",
modifiedtests/src/pallet-presence.test.tsdiffbeforeafterboth
1313
14// Pallets that must always be present14// Pallets that must always be present
15const 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];
1818
19// Pallets that depend on consensus and governance configuration19// Pallets that depend on consensus and governance configuration