Skip to content
This repository was archived by the owner on Feb 12, 2024. It is now read-only.

Commit 676d9fc

Browse files
committed
chore: use small keys for faster startup
1 parent f351dd5 commit 676d9fc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/ipfs/test/core/init.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,14 +76,14 @@ describe('init', function () {
7676
})
7777

7878
it('should apply one profile', async () => {
79-
await ipfs.init({ profiles: ['test'] })
79+
await ipfs.init({ bits: 512, profiles: ['test'] })
8080

8181
const config = await repo.config.get()
8282
expect(config.Bootstrap).to.be.empty()
8383
})
8484

8585
it('should apply multiple profiles', async () => {
86-
await ipfs.init({ profiles: ['test', 'local-discovery'] })
86+
await ipfs.init({ bits: 512, profiles: ['test', 'local-discovery'] })
8787

8888
const config = await repo.config.get()
8989
expect(config.Bootstrap).to.be.empty()

0 commit comments

Comments
 (0)