Trying to remove teardown between tests.

This commit is contained in:
2017-12-21 00:42:44 +01:00
parent e6a34a0503
commit 908fca6dd0

View File

@@ -4,7 +4,6 @@ function resetDatabase() {
const database = new SqliteDatabase(':memory:');
return Promise.resolve()
.then(() => database.connect())
.then(() => database.tearDown())
.then(() => database.setUp());
}