Skip to content

Commit

Permalink
Merge pull request #59 from jhomarolo/master
Browse files Browse the repository at this point in the history
fix(sqlite): fix returning sqlite and add tests for support sqlite
  • Loading branch information
jhomarolo committed Jul 18, 2022
2 parents d23b0b6 + c0f5eda commit dc85a89
Show file tree
Hide file tree
Showing 15 changed files with 3,930 additions and 1,609 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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -343,13 +343,13 @@ Retrieving and Persist:
- [X] order by
- [X] find with pages
- [X] first
- [ ] last

Tests:
- [X] Pure JS
- [X] Postgress
- [X] Sql Server
- [X] MySQL
- [X] Sqlite

### Contribute

Expand Down

0 comments on commit dc85a89

Please sign in to comment.