We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2a8e3f commit a093048Copy full SHA for a093048
1 file changed
test/helpers.js
@@ -41,7 +41,7 @@ async function createStores (n, t) {
41
for (let i = 0; i < n; i++) {
42
const storage = await tmpDir()
43
const primaryKey = Buffer.alloc(32, i)
44
- stores.push(new Corestore(storage, { primaryKey }))
+ stores.push(new Corestore(storage, { primaryKey, unsafe: true }))
45
}
46
47
t.teardown(() => Promise.all(stores.map(s => s.close())), { order: 2 })
0 commit comments