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

Commit 6f14f23

Browse files
committed
types(test): Tidy types, linting.
1 parent 9b0e8a2 commit 6f14f23

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

test/flakey/LongResend.test.ts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { wait } from 'streamr-test-utils'
2-
import { StreamrClient } from '../../src/StreamrClient'
2+
import { StreamrClient, Stream } from '../../src'
33
import { fakePrivateKey } from '../utils'
44
import Connection from '../../src/Connection'
55
import prettyBytes from 'pretty-bytes'
@@ -20,7 +20,7 @@ function logMemory() {
2020

2121
describe('LongResend', () => {
2222
let client: StreamrClient
23-
let stream
23+
let stream: Stream
2424
let expectErrors = 0 // check no errors by default
2525
let onError = jest.fn()
2626

@@ -101,11 +101,10 @@ describe('LongResend', () => {
101101
}, Math.max(10000, size))
102102
})
103103

104-
test.only('can get big resend', async () => {
104+
test('can get big resend', async () => {
105105
let count = 0
106106
const today = 1616527054932
107107
const yesterday = 1616440654932
108-
// 1616527054932 - 10000
109108
const sub = await client.resend({
110109
stream: stream.id,
111110
resend: {

0 commit comments

Comments
 (0)