Skip to content

deps: update interface-datastore and friends #409

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Aug 14, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: linting
  • Loading branch information
achingbrain committed Aug 12, 2022
commit c1e2fa02d289e4fcf433fd20b1292b3ee7d2df4c
4 changes: 3 additions & 1 deletion packages/ipfs-repo-migrations/test/node.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ import { test as integrationTests } from './integration-test.js'
* @param {string} dir
*/
async function cleanup (dir) {
await new Promise((resolve, reject) => {
/** @type {Promise<void>} */
const p = new Promise((resolve, reject) => {
rimraf(dir, (err) => {
if (err) {
reject(err)
Expand All @@ -30,6 +31,7 @@ async function cleanup (dir) {
resolve()
})
})
await p
}

const CONFIGURATIONS = [{
Expand Down