From f70b1be64d0855be4aee31dfec4559e849a573f9 Mon Sep 17 00:00:00 2001 From: mehdi Date: Wed, 20 Oct 2021 00:56:39 +0200 Subject: [PATCH] fix test flakiness --- typings-tests.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typings-tests.ts b/typings-tests.ts index 2d22763..3144ec0 100644 --- a/typings-tests.ts +++ b/typings-tests.ts @@ -17,7 +17,7 @@ db = new Datastore({ filename: 'path/to/datafile' }) db.loadDatabase() // Type 3: Persistent datastore with automatic loading -db = new Datastore({ filename: 'path/to/datafile', autoload: true }) +db = new Datastore({ filename: 'path/to/datafile_2', autoload: true }) // You can issue commands right away // Type 4: Persistent datastore for a Node Webkit app called 'nwtest'