Skip to content

Commit

Permalink
test: another attempt at fixing broken tests
Browse files Browse the repository at this point in the history
  • Loading branch information
thetutlage committed Jun 18, 2024
1 parent 2d9697b commit 8a4df1c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/database/drop_tables.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ test.group('Query client | drop tables', (group) => {
await connection.disconnect()
})

if (['better-sqlite', 'sqlite', 'libsql'].includes(process.env.DB!)) {
if (['better_sqlite', 'sqlite', 'libsql'].includes(process.env.DB!)) {
test('drop tables when PRAGMA foreign_keys is enabled', async ({ assert }) => {
const connection = new Connection('primary', getConfig(), logger)
connection.connect()
Expand Down
2 changes: 1 addition & 1 deletion test/database/query_builder.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ import {
} from '../../test-helpers/index.js'
import { QueryClient } from '../../src/query_client/index.js'

if (!['better-sqlite', 'sqlite', 'libsql'].includes(process.env.DB!)) {
if (!['better_sqlite', 'sqlite', 'libsql'].includes(process.env.DB!)) {
test.group('Query Builder | client', (group) => {
group.setup(async () => {
await setup()
Expand Down

0 comments on commit 8a4df1c

Please sign in to comment.