Skip to content

Commit

Permalink
Fix a flaky web test (#344)
Browse files Browse the repository at this point in the history
  • Loading branch information
slvrtrn authored Oct 22, 2024
1 parent 2939cde commit 83f613b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import type { Row } from '@clickhouse/client-common'
import { createTestClient } from '@test/utils'
import type { WebClickHouseClient } from '../../src/client'

fdescribe('[Web] abort request', () => {
describe('[Web] abort request', () => {
let client: WebClickHouseClient

beforeEach(() => {
Expand Down Expand Up @@ -35,7 +35,7 @@ fdescribe('[Web] abort request', () => {
let rowCount = 0
const selectPromise = client
.query({
query: 'SELECT number FROM system.numbers LIMIT 1000',
query: 'SELECT number FROM system.numbers LIMIT 10000',
format: 'JSONCompactEachRow',
abort_signal: controller.signal,
clickhouse_settings: {
Expand Down

0 comments on commit 83f613b

Please sign in to comment.