From 0378dead81c405a85fc7bb288889fbca149cf780 Mon Sep 17 00:00:00 2001 From: Daniel Bruce Date: Fri, 18 Aug 2023 16:02:52 -0400 Subject: [PATCH] Add only to the test we are interested in --- system-test/datastore.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system-test/datastore.ts b/system-test/datastore.ts index 1bb12d4c3..28b38ea67 100644 --- a/system-test/datastore.ts +++ b/system-test/datastore.ts @@ -316,7 +316,7 @@ describe('Datastore', () => { describe('multi-db support for read and write operations', () => { const keyHierarchy = ['Post', 'post1']; - it('should run a query with another database', async () => { + it.only('should run a query with another database', async () => { // First verify that a record gets written to datastore const postKey = datastore.key(keyHierarchy); await datastore.save({key: postKey, data: post});