mirror of
https://github.com/orbitdb/orbitdb.git
synced 2025-10-07 22:57:07 +00:00
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:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user