mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-24 19:44:21 +01:00
testing: Add JavaScript compatibility test suite
This is essentially an import of the libSQL test suite.
This commit is contained in:
19
testing/javascript/package.json
Normal file
19
testing/javascript/package.json
Normal file
@@ -0,0 +1,19 @@
|
||||
{
|
||||
"name": "turso-integration-tests",
|
||||
"type": "module",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"test": "npm run test:turso && npm run test:serverless && npm run test:better-sqlite3",
|
||||
"test:turso": "PROVIDER=turso ava __test__/*.test.js",
|
||||
"test:serverless": "PROVIDER=serverless ava __test__/async.test.js",
|
||||
"test:better-sqlite3": "PROVIDER=better-sqlite3 ava __test__/sync.test.js"
|
||||
},
|
||||
"devDependencies": {
|
||||
"ava": "^5.3.0"
|
||||
},
|
||||
"dependencies": {
|
||||
"@tursodatabase/turso": "../../bindings/javascript",
|
||||
"@tursodatabase/serverless": "../../packages/turso-serverless",
|
||||
"better-sqlite3": "^11.9.1"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user