From be894aab4c80b0df02f282a6a94533c2733bb91d Mon Sep 17 00:00:00 2001 From: Alan Shaw Date: Mon, 5 Aug 2019 12:33:43 +0100 Subject: [PATCH] fix: assert value exists Fixes: ``` TypeError [ERR_MISSING_ARGS]: The "actual" and "expected" arguments must be specified at Function.notEqual (assert.js:406:11) at Context. (test/create-open.test.js:137:18) ``` --- test/create-open.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/create-open.test.js b/test/create-open.test.js index 9339fa1..c529e8d 100644 --- a/test/create-open.test.js +++ b/test/create-open.test.js @@ -134,7 +134,7 @@ Object.keys(testAPIs).forEach(API => { it('saves database manifest file locally', async () => { const manifest = await io.read(ipfs, db.address.root) - assert.notEqual(manifest, ) + assert(manifest) assert.equal(manifest.name, 'second') assert.equal(manifest.type, 'feed') assert.notEqual(manifest.accessController, null)