git » sdk » commit 40db4f2

Cleanup this file a bit

author Eric Roberts
2026-08-26 22:20:31 UTC
committer Stephen Paul Weber
2026-08-27 01:56:55 UTC
parent 7da0d86de20a573f5f0d146fae6ee2785c4ff001

Cleanup this file a bit

Previous patches removed any sqlite specific tests, but didn't remove the
import of expect. Now that there are no other tests there's not really any
reason to import sqliteTest as test, so I just pass sqliteTest to the shared
tests function.

test/sqlite.spec.ts +2 -2

diff --git a/test/sqlite.spec.ts b/test/sqlite.spec.ts
index 98144d1..d124d0f 100644
--- a/test/sqlite.spec.ts
+++ b/test/sqlite.spec.ts
@@ -1,4 +1,4 @@
-import { sqliteTest as test, expect } from "./browser-test";
+import { sqliteTest } from "./browser-test";
 import { sharedPersistenceTests } from "./persistence-tests";
 
-sharedPersistenceTests(test);
+sharedPersistenceTests(sqliteTest);