Skip to content

Commit

Permalink
chore: disable unstable test (#819)
Browse files Browse the repository at this point in the history
  • Loading branch information
patricebender authored Oct 1, 2024
1 parent 43c7a6c commit 3cde69c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sqlite/test/general/stream.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ describe('streaming', () => {
expect(stream).toBeNull()
}))

test('READ ID and stream property with .from, .column and .where', async () => cds.tx(async () => {
// re-enable after /cap/cdsnode/issues/2130 has been fixed
test.skip('READ ID and stream property with .from, .column and .where', async () => cds.tx(async () => {
const { Images } = cds.entities('test')
const [{ ID, data: stream }] = await SELECT.from(Images).columns(['ID', 'data']).where({ ID: 1 })
await checkSize(stream)
Expand Down

0 comments on commit 3cde69c

Please sign in to comment.