Skip to content

Commit 83f613b

Browse files
authored
Fix a flaky web test (#344)
1 parent 2939cde commit 83f613b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/client-web/__tests__/integration/web_abort_request.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import type { Row } from '@clickhouse/client-common'
22
import { createTestClient } from '@test/utils'
33
import type { WebClickHouseClient } from '../../src/client'
44

5-
fdescribe('[Web] abort request', () => {
5+
describe('[Web] abort request', () => {
66
let client: WebClickHouseClient
77

88
beforeEach(() => {
@@ -35,7 +35,7 @@ fdescribe('[Web] abort request', () => {
3535
let rowCount = 0
3636
const selectPromise = client
3737
.query({
38-
query: 'SELECT number FROM system.numbers LIMIT 1000',
38+
query: 'SELECT number FROM system.numbers LIMIT 10000',
3939
format: 'JSONCompactEachRow',
4040
abort_signal: controller.signal,
4141
clickhouse_settings: {

0 commit comments

Comments
 (0)