git.delta.rocks / unique-network / refs/commits / 693c0033be86

difftreelog

test restore gov tests

Yaroslav Bolyukin2023-09-01parent: #3cd8b28.patch.diff
in: master

1 file changed

modifiedtests/package.jsondiffbeforeafterboth
before · tests/package.json
1{2  "name": "unique-tests",3  "version": "1.0.0",4  "description": "Unique Chain Tests",5  "main": "",6  "devDependencies": {7    "@polkadot/typegen": "10.9.1",8    "@types/chai": "^4.3.3",9    "@types/chai-as-promised": "^7.1.5",10    "@types/chai-like": "^1.1.1",11    "@types/chai-subset": "^1.3.3",12    "@types/mocha": "^10.0.0",13    "@types/node": "^20.4.2",14    "@typescript-eslint/eslint-plugin": "^6.0.0",15    "@typescript-eslint/parser": "^6.0.0",16    "chai": "^4.3.6",17    "chai-subset": "^1.6.0",18    "eslint": "^8.45.0",19    "eslint-plugin-mocha": "^10.1.0",20    "mocha": "^10.1.0",21    "ts-node": "^10.9.1",22    "typescript": "^5.1.6"23  },24  "mocha": {25    "timeout": 9999999,26    "require": [27      "ts-node/register"28    ]29  },30  "scripts": {31    "lint": "eslint --ext .ts,.js src/",32    "fix": "yarn lint --fix",33    "setup": "ts-node --esm ./src/util/globalSetup.ts",34    "setIdentities": "ts-node --esm ./src/util/identitySetter.ts",35    "checkRelayIdentities": "ts-node --esm ./src/util/relayIdentitiesChecker.ts",36    "frankenstein": "ts-node --esm ./src/util/frankenstein.ts",37    "_test": "yarn setup && mocha --timeout 9999999 --loader=ts-node/esm.mjs",38    "_testParallel": "yarn setup && mocha --timeout 9999999 --parallel --loader=ts-node/esm.mjs",39    "test": "yarn _test './src/**/*.*test.ts'",40    "testParallelFull": "yarn testParallel && yarn testSequential",41    "testParallel": "yarn _testParallel './src/**/*.test.ts'",42    "testSequential": "yarn _test './src/**/*.seqtest.ts'",43    "testStructure": "yarn _test ./**/nesting/*.*test.ts",44    "testEth": "yarn _test './**/eth/**/*.*test.ts'",45    "testEthNesting": "yarn _test './**/eth/nesting/**/*.*test.ts'",46    "testEthFractionalizer": "yarn _test './**/eth/fractionalizer/**/*.*test.ts'",47    "testEthMarketplace": "yarn _test './**/eth/marketplace/**/*.*test.ts'",48    "testEthMarket": "yarn _test './**/eth/marketplace-v2/**/*.*test.ts'",49    "testSub": "yarn _test './**/sub/**/*.*test.ts'",50    "testSubNesting": "yarn _test './**/sub/nesting/**/*.*test.ts'",51    "testEvent": "yarn _test ./src/check-event/*.*test.ts",52    "testEthPayable": "yarn _test './**/eth/payable.test.ts'",53    "testEvmCoder": "yarn _test './**/eth/evmCoder.test.ts'",54    "testNesting": "yarn _test ./**/nest.test.ts",55    "testUnnesting": "yarn _test ./**/unnest.test.ts",56    "testProperties": "yarn _test ./**/collectionProperties.*test.ts ./**/tokenProperties.*test.ts ./**/getPropertiesRpc.test.ts",57    "testCollectionProperties": "yarn _test ./**/collectionProperties.*test.ts",58    "testTokenProperties": "yarn _test ./**/tokenProperties.*test.ts",59    "testMigration": "yarn _test ./**/nesting/migration-check.test.ts",60    "testAddCollectionAdmin": "yarn _test ./**/addCollectionAdmin.test.ts",61    "testSetCollectionLimits": "yarn _test ./**/setCollectionLimits.test.ts",62    "testChangeCollectionOwner": "yarn _test ./**/change-collection-owner.test.ts",63    "testSetCollectionSponsor": "yarn _test ./**/setCollectionSponsor.test.ts",64    "testConfirmSponsorship": "yarn _test ./**/confirmSponsorship.test.ts",65    "testRemoveCollectionAdmin": "yarn _test ./**/removeCollectionAdmin.test.ts",66    "testRemoveCollectionSponsor": "yarn _test ./**/removeCollectionSponsor.test.ts",67    "testAllowLists": "yarn _test ./**/allowLists.test.ts",68    "testConnection": "yarn _test ./**/connection.test.ts",69    "testContracts": "yarn _test ./**/contracts.test.ts",70    "testCreateItem": "yarn _test ./**/createItem.test.ts",71    "testCreateMultipleItems": "yarn _test ./**/createMultipleItems.test.ts",72    "testCreateMultipleItemsEx": "yarn _test ./**/createMultipleItemsEx.test.ts",73    "testApprove": "yarn _test ./**/approve.test.ts",74    "testTransferFrom": "yarn _test ./**/transferFrom.test.ts",75    "testCreateCollection": "yarn _test ./**/createCollection.test.ts",76    "testDestroyCollection": "yarn _test ./**/destroyCollection.test.ts",77    "testToggleContractAllowList": "yarn _test ./**/toggleContractAllowList.test.ts",78    "testAddToContractAllowList": "yarn _test ./**/addToContractAllowList.test.ts",79    "testTransfer": "yarn _test ./**/transfer.test.ts",80    "testBurnItem": "yarn _test ./**/burnItem.test.ts",81    "testAdminTransferAndBurn": "yarn _test ./**/adminTransferAndBurn.test.ts",82    "testSetPermissions": "yarn _test ./**/setPermissions.test.ts",83    "testCreditFeesToTreasury": "yarn _test ./**/creditFeesToTreasury.seqtest.ts",84    "testContractSponsoring": "yarn _test ./**/eth/contractSponsoring.test.ts",85    "testEnableContractSponsoring": "yarn _test ./**/enableContractSponsoring.test.ts",86    "testRemoveFromContractAllowList": "yarn _test ./**/removeFromContractAllowList.test.ts",87    "testSetContractSponsoringRateLimit": "yarn _test ./**/setContractSponsoringRateLimit.test.ts",88    "testSetOffchainSchema": "yarn _test ./**/setOffchainSchema.test.ts",89    "testNextSponsoring": "yarn _test ./**/nextSponsoring.test.ts",90    "testOverflow": "yarn _test ./**/overflow.test.ts",91    "testMaintenance": "yarn _test ./**/maintenance.seqtest.ts",92    "testInflation": "yarn _test ./**/inflation.seqtest.ts",93    "testScheduler": "yarn _test ./**/scheduler.seqtest.ts",94    "testSchedulingEVM": "yarn _test ./**/eth/scheduling.test.ts",95    "testPalletPresence": "yarn _test ./**/pallet-presence.test.ts",96    "testEnableDisableTransfers": "yarn _test ./**/enableDisableTransfer.test.ts",97    "testLimits": "yarn _test ./**/limits.test.ts",98    "testEthCreateNFTCollection": "yarn _test ./**/eth/createNFTCollection.test.ts",99    "testEthCreateRFTCollection": "yarn _test ./**/eth/createRFTCollection.test.ts",100    "testEthNFT": "yarn _test ./**/eth/nonFungible.test.ts",101    "testRFT": "yarn _test ./**/refungible.test.ts",102    "testEthRFT": "yarn _test ./**/eth/reFungible.test.ts ./**/eth/reFungibleToken.test.ts",103    "testFT": "yarn _test ./**/fungible.test.ts",104    "testEthFT": "yarn _test ./**/eth/fungible.test.ts",105    "testRPC": "yarn _test ./**/rpc.test.ts",106    "testPromotion": "yarn _test ./**/appPromotion/*test.ts",107    "testApiConsts": "yarn _test ./**/apiConsts.test.ts",108    "testCollators": "RUN_COLLATOR_TESTS=1 yarn _test ./**/collator-selection/**.*test.ts --timeout 49999999",109    "testCollatorSelection": "RUN_COLLATOR_TESTS=1 yarn _test ./**/collatorSelection.*test.ts --timeout 49999999",110    "testIdentity": "RUN_COLLATOR_TESTS=1 yarn _test ./**/identity.*test.ts --timeout 49999999",111    "testXcmUnique": "RUN_XCM_TESTS=1 yarn _test ./**/xcm/xcmUnique.test.ts",112    "testXcmQuartz": "RUN_XCM_TESTS=1 yarn _test ./**/xcm/xcmQuartz.test.ts",113    "testXcmOpal": "RUN_XCM_TESTS=1 yarn _test ./**/xcm/xcmOpal.test.ts",114    "testXcmTransferAcala": "yarn _test ./**/xcm/xcmTransferAcala.test.ts acalaId=2000 uniqueId=5000",115    "testXcmTransferStatemine": "yarn _test ./**/xcm/xcmTransferStatemine.test.ts statemineId=1000 uniqueId=5000",116    "testXcmTransferMoonbeam": "yarn _test ./**/xcm/xcmTransferMoonbeam.test.ts",117    "benchMintingFee": "ts-node src/benchmarks/mintFee/benchmark.ts",118    "load": "yarn _test './**/*.load.ts'",119    "loadTransfer": "ts-node src/transfer.nload.ts",120    "polkadot-types-fetch-metadata": "yarn ts-node --esm src/fetchMetadata.ts",121    "polkadot-types-from-defs": "ts-node --esm ./node_modules/.bin/polkadot-types-from-defs --endpoint src/interfaces/metadata.json --input src/interfaces/ --package .",122    "polkadot-types-from-chain": "ts-node --esm ./node_modules/.bin/polkadot-types-from-chain --endpoint src/interfaces/metadata.json --output src/interfaces/ --package .",123    "polkadot-types": "echo \"export default {}\" > src/interfaces/lookup.ts && yarn polkadot-types-fetch-metadata && yarn polkadot-types-from-defs && yarn polkadot-types-from-defs && yarn polkadot-types-from-chain",124    "generateEnv": "ts-node --esm ./src/generateEnv.ts"125  },126  "author": "",127  "license": "SEE LICENSE IN ../LICENSE",128  "homepage": "",129  "dependencies": {130    "@openzeppelin/contracts": "^4.9.2",131    "@polkadot/api": "10.9.1",132    "@polkadot/rpc-core": "^10.9.1",133    "@polkadot/util": "12.3.2",134    "@polkadot/util-crypto": "12.3.2",135    "@polkadot/wasm-crypto-asmjs": "^7.2.1",136    "@polkadot/wasm-crypto-wasm": "^7.2.1",137    "@rmrk-team/evm-contracts": "^1.2.1",138    "@typechain/web3-v1": "^6.0.3",139    "chai-as-promised": "^7.1.1",140    "chai-like": "^1.1.1",141    "csv-writer": "^1.6.0",142    "find-process": "^1.4.7",143    "lossless-json": "^2.0.9",144    "solc": "0.8.20",145    "typechain": "^8.2.0",146    "web3": "1.10.0"147  },148  "resolutions": {149    "decode-uri-component": "^0.2.1"150  },151  "type": "module",152  "packageManager": "yarn@3.6.1"153}
after · tests/package.json
1{2  "name": "unique-tests",3  "version": "1.0.0",4  "description": "Unique Chain Tests",5  "main": "",6  "devDependencies": {7    "@polkadot/typegen": "10.9.1",8    "@types/chai": "^4.3.3",9    "@types/chai-as-promised": "^7.1.5",10    "@types/chai-like": "^1.1.1",11    "@types/chai-subset": "^1.3.3",12    "@types/mocha": "^10.0.0",13    "@types/node": "^20.4.2",14    "@typescript-eslint/eslint-plugin": "^6.0.0",15    "@typescript-eslint/parser": "^6.0.0",16    "chai": "^4.3.6",17    "chai-subset": "^1.6.0",18    "eslint": "^8.45.0",19    "eslint-plugin-mocha": "^10.1.0",20    "mocha": "^10.1.0",21    "ts-node": "^10.9.1",22    "typescript": "^5.1.6"23  },24  "mocha": {25    "timeout": 9999999,26    "require": [27      "ts-node/register"28    ]29  },30  "scripts": {31    "lint": "eslint --ext .ts,.js src/",32    "fix": "yarn lint --fix",33    "setup": "ts-node --esm ./src/util/globalSetup.ts",34    "setIdentities": "ts-node --esm ./src/util/identitySetter.ts",35    "checkRelayIdentities": "ts-node --esm ./src/util/relayIdentitiesChecker.ts",36    "frankenstein": "ts-node --esm ./src/util/frankenstein.ts",37    "_test": "yarn setup && mocha --timeout 9999999 --loader=ts-node/esm.mjs",38    "_testParallel": "yarn setup && mocha --timeout 9999999 --parallel --loader=ts-node/esm.mjs",39    "test": "yarn _test './src/**/*.*test.ts'",40    "testParallelFull": "yarn testParallel && yarn testSequential",41    "testParallel": "yarn _testParallel './src/**/*.test.ts'",42    "testSequential": "yarn _test './src/**/*.seqtest.ts'",43    "testStructure": "yarn _test ./**/nesting/*.*test.ts",44    "testGovernance": "RUN_GOV_TESTS=1 yarn _test ./**/governance/*.*test.ts",45    "testEth": "yarn _test './**/eth/**/*.*test.ts'",46    "testEthNesting": "yarn _test './**/eth/nesting/**/*.*test.ts'",47    "testEthFractionalizer": "yarn _test './**/eth/fractionalizer/**/*.*test.ts'",48    "testEthMarketplace": "yarn _test './**/eth/marketplace/**/*.*test.ts'",49    "testEthMarket": "yarn _test './**/eth/marketplace-v2/**/*.*test.ts'",50    "testSub": "yarn _test './**/sub/**/*.*test.ts'",51    "testSubNesting": "yarn _test './**/sub/nesting/**/*.*test.ts'",52    "testEvent": "yarn _test ./src/check-event/*.*test.ts",53    "testEthPayable": "yarn _test './**/eth/payable.test.ts'",54    "testEvmCoder": "yarn _test './**/eth/evmCoder.test.ts'",55    "testNesting": "yarn _test ./**/nest.test.ts",56    "testUnnesting": "yarn _test ./**/unnest.test.ts",57    "testProperties": "yarn _test ./**/collectionProperties.*test.ts ./**/tokenProperties.*test.ts ./**/getPropertiesRpc.test.ts",58    "testCollectionProperties": "yarn _test ./**/collectionProperties.*test.ts",59    "testTokenProperties": "yarn _test ./**/tokenProperties.*test.ts",60    "testMigration": "yarn _test ./**/nesting/migration-check.test.ts",61    "testAddCollectionAdmin": "yarn _test ./**/addCollectionAdmin.test.ts",62    "testSetCollectionLimits": "yarn _test ./**/setCollectionLimits.test.ts",63    "testChangeCollectionOwner": "yarn _test ./**/change-collection-owner.test.ts",64    "testSetCollectionSponsor": "yarn _test ./**/setCollectionSponsor.test.ts",65    "testConfirmSponsorship": "yarn _test ./**/confirmSponsorship.test.ts",66    "testRemoveCollectionAdmin": "yarn _test ./**/removeCollectionAdmin.test.ts",67    "testRemoveCollectionSponsor": "yarn _test ./**/removeCollectionSponsor.test.ts",68    "testAllowLists": "yarn _test ./**/allowLists.test.ts",69    "testConnection": "yarn _test ./**/connection.test.ts",70    "testContracts": "yarn _test ./**/contracts.test.ts",71    "testCreateItem": "yarn _test ./**/createItem.test.ts",72    "testCreateMultipleItems": "yarn _test ./**/createMultipleItems.test.ts",73    "testCreateMultipleItemsEx": "yarn _test ./**/createMultipleItemsEx.test.ts",74    "testApprove": "yarn _test ./**/approve.test.ts",75    "testTransferFrom": "yarn _test ./**/transferFrom.test.ts",76    "testCreateCollection": "yarn _test ./**/createCollection.test.ts",77    "testDestroyCollection": "yarn _test ./**/destroyCollection.test.ts",78    "testToggleContractAllowList": "yarn _test ./**/toggleContractAllowList.test.ts",79    "testAddToContractAllowList": "yarn _test ./**/addToContractAllowList.test.ts",80    "testTransfer": "yarn _test ./**/transfer.test.ts",81    "testBurnItem": "yarn _test ./**/burnItem.test.ts",82    "testAdminTransferAndBurn": "yarn _test ./**/adminTransferAndBurn.test.ts",83    "testSetPermissions": "yarn _test ./**/setPermissions.test.ts",84    "testCreditFeesToTreasury": "yarn _test ./**/creditFeesToTreasury.seqtest.ts",85    "testContractSponsoring": "yarn _test ./**/eth/contractSponsoring.test.ts",86    "testEnableContractSponsoring": "yarn _test ./**/enableContractSponsoring.test.ts",87    "testRemoveFromContractAllowList": "yarn _test ./**/removeFromContractAllowList.test.ts",88    "testSetContractSponsoringRateLimit": "yarn _test ./**/setContractSponsoringRateLimit.test.ts",89    "testSetOffchainSchema": "yarn _test ./**/setOffchainSchema.test.ts",90    "testNextSponsoring": "yarn _test ./**/nextSponsoring.test.ts",91    "testOverflow": "yarn _test ./**/overflow.test.ts",92    "testMaintenance": "yarn _test ./**/maintenance.seqtest.ts",93    "testInflation": "yarn _test ./**/inflation.seqtest.ts",94    "testScheduler": "yarn _test ./**/scheduler.seqtest.ts",95    "testSchedulingEVM": "yarn _test ./**/eth/scheduling.test.ts",96    "testPalletPresence": "yarn _test ./**/pallet-presence.test.ts",97    "testEnableDisableTransfers": "yarn _test ./**/enableDisableTransfer.test.ts",98    "testLimits": "yarn _test ./**/limits.test.ts",99    "testEthCreateNFTCollection": "yarn _test ./**/eth/createNFTCollection.test.ts",100    "testEthCreateRFTCollection": "yarn _test ./**/eth/createRFTCollection.test.ts",101    "testEthNFT": "yarn _test ./**/eth/nonFungible.test.ts",102    "testRFT": "yarn _test ./**/refungible.test.ts",103    "testEthRFT": "yarn _test ./**/eth/reFungible.test.ts ./**/eth/reFungibleToken.test.ts",104    "testFT": "yarn _test ./**/fungible.test.ts",105    "testEthFT": "yarn _test ./**/eth/fungible.test.ts",106    "testRPC": "yarn _test ./**/rpc.test.ts",107    "testPromotion": "yarn _test ./**/appPromotion/*test.ts",108    "testApiConsts": "yarn _test ./**/apiConsts.test.ts",109    "testCouncil": "yarn _test ./**/council.*test.ts",110    "testDemocracy": "yarn _test ./**/democracy.*test.ts",111    "testCollators": "RUN_COLLATOR_TESTS=1 yarn _test ./**/collator-selection/**.*test.ts --timeout 49999999",112    "testCollatorSelection": "RUN_COLLATOR_TESTS=1 yarn _test ./**/collatorSelection.*test.ts --timeout 49999999",113    "testIdentity": "RUN_COLLATOR_TESTS=1 yarn _test ./**/identity.*test.ts --timeout 49999999",114    "testXcmUnique": "RUN_XCM_TESTS=1 yarn _test ./**/xcm/xcmUnique.test.ts",115    "testXcmQuartz": "RUN_XCM_TESTS=1 yarn _test ./**/xcm/xcmQuartz.test.ts",116    "testXcmOpal": "RUN_XCM_TESTS=1 yarn _test ./**/xcm/xcmOpal.test.ts",117    "testXcmTransferAcala": "yarn _test ./**/xcm/xcmTransferAcala.test.ts acalaId=2000 uniqueId=5000",118    "testXcmTransferStatemine": "yarn _test ./**/xcm/xcmTransferStatemine.test.ts statemineId=1000 uniqueId=5000",119    "testXcmTransferMoonbeam": "yarn _test ./**/xcm/xcmTransferMoonbeam.test.ts",120    "benchMintingFee": "ts-node src/benchmarks/mintFee/benchmark.ts",121    "load": "yarn _test './**/*.load.ts'",122    "loadTransfer": "ts-node src/transfer.nload.ts",123    "polkadot-types-fetch-metadata": "yarn ts-node --esm src/fetchMetadata.ts",124    "polkadot-types-from-defs": "ts-node --esm ./node_modules/.bin/polkadot-types-from-defs --endpoint src/interfaces/metadata.json --input src/interfaces/ --package .",125    "polkadot-types-from-chain": "ts-node --esm ./node_modules/.bin/polkadot-types-from-chain --endpoint src/interfaces/metadata.json --output src/interfaces/ --package .",126    "polkadot-types": "echo \"export default {}\" > src/interfaces/lookup.ts && yarn polkadot-types-fetch-metadata && yarn polkadot-types-from-defs && yarn polkadot-types-from-defs && yarn polkadot-types-from-chain",127    "generateEnv": "ts-node --esm ./src/generateEnv.ts"128  },129  "author": "",130  "license": "SEE LICENSE IN ../LICENSE",131  "homepage": "",132  "dependencies": {133    "@openzeppelin/contracts": "^4.9.2",134    "@polkadot/api": "10.9.1",135    "@polkadot/rpc-core": "^10.9.1",136    "@polkadot/util": "12.3.2",137    "@polkadot/util-crypto": "12.3.2",138    "@polkadot/wasm-crypto-asmjs": "^7.2.1",139    "@polkadot/wasm-crypto-wasm": "^7.2.1",140    "@rmrk-team/evm-contracts": "^1.2.1",141    "@typechain/web3-v1": "^6.0.3",142    "chai-as-promised": "^7.1.1",143    "chai-like": "^1.1.1",144    "csv-writer": "^1.6.0",145    "find-process": "^1.4.7",146    "lossless-json": "^2.0.9",147    "solc": "0.8.20",148    "typechain": "^8.2.0",149    "web3": "1.10.0"150  },151  "resolutions": {152    "decode-uri-component": "^0.2.1"153  },154  "type": "module",155  "packageManager": "yarn@3.6.1"156}