Skip to content

Commit

Permalink
fix(sqlite): fix returning sqlite and add tests for support sqlite
Browse files Browse the repository at this point in the history
fix #58
  • Loading branch information
jhomarolo committed Jul 17, 2022
1 parent d23b0b6 commit 74240b4
Show file tree
Hide file tree
Showing 14 changed files with 1,305 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -162,3 +162,4 @@ public
.vscode/*
.history/
*.vsix
file.sqlite
19 changes: 19 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,25 @@
]
}
,
{
"type": "node",
"request": "launch",
"name": "DB Tests sqlite3",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
"args": [
"--timeout",
"999999",
"--colors",
"--recursive",
"${workspaceFolder}/test/integration/sqlite"
],
"internalConsoleOptions": "openOnSessionStart",
"skipFiles": [
"${workspaceFolder}/node_modules/**/*.js",
"<node_internals>/**/*.js"
]
}
,
{
"type": "node",
"request": "launch",
Expand Down
Loading

0 comments on commit 74240b4

Please sign in to comment.