Skip to content

Commit

Permalink
Remove fdescribe
Browse files Browse the repository at this point in the history
  • Loading branch information
slvrtrn committed Oct 1, 2024
1 parent c247603 commit 980ad3f
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 { ClickHouseClient, Row } from '@clickhouse/client-common'
import { createTestClient } from '@test/utils'
import { genLargeStringsDataset } from '@test/utils/datasets'

fdescribe('[Web] SELECT streaming', () => {
describe('[Web] SELECT streaming', () => {
let client: ClickHouseClient<ReadableStream<Row[]>>
afterEach(async () => {
await client.close()
Expand Down Expand Up @@ -211,7 +211,7 @@ fdescribe('[Web] SELECT streaming', () => {
// See https://github.com/ClickHouse/clickhouse-js/issues/171 for more details
// Here we generate a large enough dataset to break into multiple chunks while streaming,
// effectively testing the implementation of incomplete rows handling
fdescribe('should correctly process multiple chunks', () => {
describe('should correctly process multiple chunks', () => {
describe('large amount of rows', () => {
it('should work with .json()', async () => {
const { table, values } = await genLargeStringsDataset(client, {
Expand Down

0 comments on commit 980ad3f

Please sign in to comment.