From 13b3150f62050c8104b459587978b96ef606addc Mon Sep 17 00:00:00 2001 From: Chris Troutner Date: Fri, 18 Mar 2022 11:24:04 -0700 Subject: [PATCH] minor linting --- test/unit/adapters/ipfs.adapter.unit.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/unit/adapters/ipfs.adapter.unit.js b/test/unit/adapters/ipfs.adapter.unit.js index f5da812..72ffbda 100644 --- a/test/unit/adapters/ipfs.adapter.unit.js +++ b/test/unit/adapters/ipfs.adapter.unit.js @@ -23,7 +23,7 @@ describe('#IPFS-adapter', () => { sandbox.restore() }) - describe('#Constructor', () => { + describe('#constructor', () => { it('should instantiate IPFS Lib in dev mode.', async () => { const _uut = new IPFSLib() assert.exists(_uut) @@ -40,6 +40,7 @@ describe('#IPFS-adapter', () => { config.isProduction = false }) }) + describe('#start', () => { it('should return a promise that resolves into an instance of IPFS.', async () => { // Mock dependencies. @@ -52,6 +53,7 @@ describe('#IPFS-adapter', () => { assert.property(result, 'config') }) + it('should return a promise that resolves into an instance of IPFS in production mode.', async () => { // Mock dependencies. uut.IPFS = IPFSMock