Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: Upload Code Coverage
uses: codecov/codecov-action@v4
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

examples-test:
needs: code-test
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
if [ "$RUNNER_OS" != "Windows" ]; then
bun i #re-installing dependencies in windows with bash causes a panic
fi

bun_test=$(bun start)

if [[ "$bun_test" == *"Composer: 'Angus Young, Malcolm Young, Brian Johnson',"* ]]; then
Expand Down Expand Up @@ -383,7 +383,7 @@ jobs:
version: '15'

name: 'React Native Android ${{matrix.version}} Test'
timeout-minutes: 30
timeout-minutes: 40
runs-on: ubuntu-latest #android emulator on github actions works only on linux and old macos x86 builds, we can skip other os since the build and test process is going to be the same

steps:
Expand Down Expand Up @@ -511,7 +511,7 @@ jobs:
version: '15'

name: 'Expo Android ${{matrix.version}} Test'
timeout-minutes: 30
timeout-minutes: 40
runs-on: ubuntu-latest #android emulator on github actions works only on linux and old macos x86 builds, we can skip other os since the build and test process is going to be the same

steps:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sqlitecloud/drivers",
"version": "1.0.515",
"version": "1.0.519",
"description": "SQLiteCloud drivers for Typescript/Javascript in edge, web and node clients",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
Expand Down
16 changes: 12 additions & 4 deletions test/core.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1346,7 +1346,9 @@ describe.each([
status: expect.any(Number),
wal_size: expect.any(Number),
shm_size: expect.any(Number),
cloudsync: null
cloudsync: null,
rls: null,
udf: null
})
)
})
Expand All @@ -1371,7 +1373,9 @@ describe.each([
status: expect.any(Number),
wal_size: expect.any(Number),
shm_size: expect.any(Number),
cloudsync: null
cloudsync: null,
rls: null,
udf: null
})
)
})
Expand All @@ -1396,7 +1400,9 @@ describe.each([
status: expect.any(Number),
wal_size: expect.any(Number),
shm_size: expect.any(Number),
cloudsync: null
cloudsync: null,
rls: null,
udf: null
})
)
})
Expand Down Expand Up @@ -3949,7 +3955,9 @@ describe.each([
status: 1,
wal_size: expect.any(Number),
shm_size: expect.any(Number),
cloudsync: null
cloudsync: null,
rls: null,
udf: null
})

chinook.close()
Expand Down
Loading