From 977367ad452432c41214a92da59803a42f4c8fa6 Mon Sep 17 00:00:00 2001 From: Igor Kozyrev Date: Mon, 04 Oct 2021 14:52:39 +0000 Subject: [PATCH] only removed. skip used on tests dependent on feature=limit-testing --- --- a/tests/src/limits.test.ts +++ b/tests/src/limits.test.ts @@ -29,7 +29,7 @@ }); }); - it('Collection limits allow greater number than chain limits, chain limits are enforced', async () => { + it.skip('Collection limits allow greater number than chain limits, chain limits are enforced', async () => { const collectionId = await createCollectionExpectSuccess({ mode: { type: 'NFT' } }); await setCollectionLimitsExpectSuccess(Alice, collectionId, { AccountTokenOwnershipLimit: 20 }); @@ -59,7 +59,7 @@ }); }); - it('Collection limits allow greater number than chain limits, chain limits are enforced', async () => { + it.skip('Collection limits allow greater number than chain limits, chain limits are enforced', async () => { const collectionId = await createCollectionExpectSuccess({mode: {type: 'ReFungible' }}); await setCollectionLimitsExpectSuccess(Alice, collectionId, { AccountTokenOwnershipLimit: 20 }); for(let i = 0; i < 10; i++){ @@ -278,7 +278,7 @@ }); }); - it('Limits have 0 in tokens per address field, the chain limits are applied', async () => { + it.skip('Limits have 0 in tokens per address field, the chain limits are applied', async () => { const collectionId = await createCollectionExpectSuccess({ mode: { type: 'NFT' } }); await setCollectionLimitsExpectSuccess(Alice, collectionId, { AccountTokenOwnershipLimit: 0 }); for(let i = 0; i < 10; i++){ @@ -305,7 +305,7 @@ }); }); -describe.only('Collection zero limits (Fungible)', () => { +describe('Collection zero limits (Fungible)', () => { let Alice: IKeyringPair; let Bob: IKeyringPair; let Charlie: IKeyringPair; @@ -336,7 +336,7 @@ }); }); -describe.only('Collection zero limits (ReFungible)', () => { +describe('Collection zero limits (ReFungible)', () => { let Alice: IKeyringPair; let Bob: IKeyringPair; let Charlie: IKeyringPair; @@ -349,7 +349,7 @@ }); }); - it('Limits have 0 in tokens per address field, the chain limits are applied', async () => { + it.skip('Limits have 0 in tokens per address field, the chain limits are applied', async () => { const collectionId = await createCollectionExpectSuccess({mode: {type: 'ReFungible' }}); await setCollectionLimitsExpectSuccess(Alice, collectionId, { AccountTokenOwnershipLimit: 0 }); for(let i = 0; i < 10; i++){ -- gitstuff