From 68096799e12554e51abc43139a4e42d19968bdcf Mon Sep 17 00:00:00 2001 From: Yaroslav Bolyukin Date: Tue, 26 Jan 2021 08:46:07 +0000 Subject: [PATCH] tests: remove test for setting same mint status As decided at the meetup --- --- a/tests/src/setMintPermission.test.ts +++ b/tests/src/setMintPermission.test.ts @@ -68,15 +68,6 @@ }); }); - it('fails on same mint status set', async () => { - await usingApi(async () => { - const collectionId = await createCollectionExpectSuccess({ mode: { type: 'NFT' } }); - await enableWhiteListExpectSuccess(alice, collectionId); - await setMintPermissionExpectSuccess(alice, collectionId, true); - await setMintPermissionExpectFailure(alice, collectionId, true); - }); - }); - it('fails when not collection owner tries to set mint status', async () => { const collectionId = await createCollectionExpectSuccess({ mode: { type: 'NFT' } }); await enableWhiteListExpectSuccess(alice, collectionId); -- gitstuff