From 3ecd9689c07931b12002ff5167cce173d2e1d4b0 Mon Sep 17 00:00:00 2001 From: Jim Toth Date: Sun, 22 Oct 2023 06:12:54 -0400 Subject: [PATCH] linting --- test/spec/curation.spec.ts | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/test/spec/curation.spec.ts b/test/spec/curation.spec.ts index a67fa4f..12c6a19 100644 --- a/test/spec/curation.spec.ts +++ b/test/spec/curation.spec.ts @@ -111,9 +111,12 @@ describe('Curation Module', () => { }) it('creates collaborative curations', async () => { - const curationId = await authenticatedCurations.create('collaborative', { - title: 'My Collaborative Curation' - }) + const curationId = await authenticatedCurations.create( + 'collaborative', + { + title: 'My Collaborative Curation' + } + ) expect(curationId).to.equal(MOCK_CONTRACT_TX_ID) expect(warpMock.deployFromSourceTx.calledOnce).to.be.true @@ -144,13 +147,14 @@ describe('Curation Module', () => { expect( contractData.tags?.some(tag => { return tag.get('name') === 'Contract-Name' - && tag.get('value') === 'Collaborative-Whitelist-Curation-Contract' + && tag.get('value') + === 'Collaborative-Whitelist-Curation-Contract' }) ).to.be.true }) }) - context('Curation Owner', async () => { + context('Curation Owner', () => { it('allows setting alternate owner on deployment', async () => { await authenticatedCurations.create('ownable', { title: 'My Alternate Owner Curation',