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

difftreelog

Use any for Codec

Max Andreev2023-04-05parent: #7d56b84.patch.diff
in: master

2 files changed

modifiedtests/package.jsondiffbeforeafterboth
--- a/tests/package.json
+++ b/tests/package.json
@@ -103,7 +103,7 @@
     "testApiConsts": "yarn _test ./**/apiConsts.test.ts",
     "testCollators": "RUN_COLLATOR_TESTS=1 yarn _test ./**/collator-selection/**.*test.ts --timeout 49999999",
     "testCollatorSelection": "RUN_COLLATOR_TESTS=1 yarn _test ./**/collatorSelection.*test.ts --timeout 49999999",
-    "testIdentity": "RUN_COLLATOR_TESTS=1 yarn _test ./**/identity.*test.ts",
+    "testIdentity": "RUN_COLLATOR_TESTS=1 yarn _test ./**/identity.*test.ts --timeout 49999999",
     "testXcmUnique": "RUN_XCM_TESTS=1 yarn _test ./**/xcm/xcmUnique.test.ts",
     "testXcmQuartz": "RUN_XCM_TESTS=1 yarn _test ./**/xcm/xcmQuartz.test.ts",
     "testXcmOpal": "RUN_XCM_TESTS=1 yarn _test ./**/xcm/xcmOpal.test.ts",
modifiedtests/src/nesting/collectionProperties.test.tsdiffbeforeafterboth
235 itSub('Fails to set properties that exceed the limits', async ({helper}) => {235 itSub('Fails to set properties that exceed the limits', async ({helper}) => {
236 const collection = await helper[testSuite.mode].mintCollection(alice);236 const collection = await helper[testSuite.mode].mintCollection(alice);
237237
238 const spaceLimit = Number(helper.getApi().consts.unique.maxCollectionPropertiesSize);238 const spaceLimit = (helper.getApi().consts.unique.maxCollectionPropertiesSize as any).toNumber();
239239
240 // Mute the general tx parsing error, too many bytes to process240 // Mute the general tx parsing error, too many bytes to process
241 {241 {