From 954767e50fedfe6c4a7834fd07bd8b6aee86606c Mon Sep 17 00:00:00 2001 From: Hayden Young Date: Fri, 8 Sep 2023 01:34:41 +0100 Subject: [PATCH] chore: Fix lint issues. --- test/orbitdb-custom-database-types.test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/orbitdb-custom-database-types.test.js b/test/orbitdb-custom-database-types.test.js index 6e89017..7ee3906 100644 --- a/test/orbitdb-custom-database-types.test.js +++ b/test/orbitdb-custom-database-types.test.js @@ -56,15 +56,15 @@ describe('Add a custom database type', function () { strictEqual(err.message, 'Unsupported database type: \'custom!\'') }) }) - + describe('KeyValue Indexed database type', function () { it('replace keyvalue with keyvalue-indexed', async () => { useDatabaseType(KeyValueIndexed) const name = 'hello keyvalue-indexed database' const db = await orbitdb.open(name, { type: 'keyvalue' }) - + const indexDirectory = pathJoin('./orbitdb', `./${db.address}/_index/`) - + strictEqual(await existsSync(indexDirectory), true) }) })