Skip to content

Commit

Permalink
test: test fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tomicvladan committed Feb 23, 2024
1 parent f412710 commit 74bdc59
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/integration/node/pod/pods-limitation-check.spec.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { createFdp, generateRandomHexString, generateUser } from '../../../utils'
import { createFdp, generateRandomHexString, generateUser, sleep } from '../../../utils'
import { MAX_POD_NAME_LENGTH } from '../../../../src'
import { HIGHEST_LEVEL } from '../../../../src/feed/lookup/epoch'

Expand All @@ -11,5 +11,6 @@ it('Pods limitation check', async () => {
for (let i = 0; i < HIGHEST_LEVEL; i++) {
const longPodName = generateRandomHexString(MAX_POD_NAME_LENGTH)
await fdp.personalStorage.create(longPodName)
await sleep(100)
}
})

0 comments on commit 74bdc59

Please sign in to comment.