From 1159b374f483d107736a765b5b4f1ade80116ce3 Mon Sep 17 00:00:00 2001 From: Daniel Bruce Date: Thu, 16 Feb 2023 15:02:51 -0500 Subject: [PATCH] Fix a test by not requiring the done callback A test is timing out because we are waiting for done to be called. This fix does not require done to be called. --- test/query.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/query.ts b/test/query.ts index af5806630..38630ffc9 100644 --- a/test/query.ts +++ b/test/query.ts @@ -179,7 +179,7 @@ describe('Query', () => { }); }); describe('setAncestor', () => { - it('should set the ancestor for the query to search against', done => { + it('should set the ancestor for the query to search against', () => { const key = ['kind2', 123]; const query = new Query(['kind1']).setAncestor(key); assert.deepStrictEqual(query.ancestor, key);