Skip to content
This repository was archived by the owner on Dec 21, 2021. It is now read-only.

Commit e67d00a

Browse files
committed
Remove old Stream.detectFields test.
1 parent b918b3d commit e67d00a

File tree

1 file changed

+0
-24
lines changed

1 file changed

+0
-24
lines changed

test/integration/StreamEndpoints.test.js

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -176,30 +176,6 @@ function TestStreamEndpoints(getName) {
176176
})
177177
})
178178

179-
describe.skip('Stream configuration', () => {
180-
it('Stream.detectFields', async () => {
181-
await client.connect()
182-
await client.publish(createdStream.id, {
183-
foo: 'bar',
184-
count: 0,
185-
})
186-
// Need time to propagate to storage
187-
await wait(10000)
188-
const stream = await createdStream.detectFields()
189-
expect(stream.config.fields).toEqual([
190-
{
191-
name: 'foo',
192-
type: 'string',
193-
},
194-
{
195-
name: 'count',
196-
type: 'number',
197-
},
198-
])
199-
await client.disconnect()
200-
}, 15000)
201-
})
202-
203179
describe('Stream permissions', () => {
204180
it('Stream.getPermissions', async () => {
205181
const permissions = await createdStream.getPermissions()

0 commit comments

Comments
 (0)