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.<anonymous> (test/create-open.test.js:137:18)
```
This commit is contained in:
Alan Shaw 2019-08-05 12:33:43 +01:00 committed by GitHub
parent 57d0041039
commit be894aab4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)