Skip to content

Commit

Permalink
chore: revert
Browse files Browse the repository at this point in the history
  • Loading branch information
achingbrain committed Sep 12, 2024
1 parent 7ae59ee commit 052d54c
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -137,11 +137,11 @@
"test": "aegir test",
"docs": "aegir docs",
"docs:no-publish": "aegir docs --publish false",
"test:node": "aegir test -t node --cov -- --exit",
"test:chrome": "aegir test -t browser --cov -- --exit",
"test:chrome-webworker": "aegir test -t webworker --exit",
"test:firefox": "aegir test -t browser -- --browser firefox --exit",
"test:firefox-webworker": "aegir test -t webworker -- --browser firefox --exit",
"test:node": "aegir test -t node --cov",
"test:chrome": "aegir test -t browser --cov",
"test:chrome-webworker": "aegir test -t webworker",
"test:firefox": "aegir test -t browser -- --browser firefox",
"test:firefox-webworker": "aegir test -t webworker -- --browser firefox",
"lint": "aegir lint",
"lint:fix": "aegir lint --fix",
"clean": "aegir clean",
Expand Down Expand Up @@ -196,7 +196,7 @@
"did-jwt": "^8.0.4",
"interface-blockstore": "^5.2.10",
"ipfs-unixfs-importer": "^15.2.5",
"ipfsd-ctl": "^14.0.0",
"ipfsd-ctl": "^14.1.3",
"ipns": "^10.0.0",
"is-ipfs": "^8.0.1",
"iso-random-stream": "^2.0.2",
Expand Down
4 changes: 2 additions & 2 deletions test/interface-tests.spec.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
/* eslint-env mocha */

import { path } from 'kubo'
import { isWindows, isFirefox, isChrome } from './constants.js'
import * as tests from './interface-tests/src/index.js'
import { factory } from './utils/factory.js'
Expand Down Expand Up @@ -261,13 +262,12 @@ function executeTests (commonFactory: Factory<KuboNode>): void {

describe('kubo-rpc-client tests against kubo', function () {
void (async function () {
const { path } = await import('kubo')
/**
* @type {string|undefined}
*/
const commonFactory = factory({
type: 'kubo',
bin: typeof path === 'function' ? path() : undefined,
bin: path?.(),
test: true
})
describe('kubo RPC client interface tests', function () {
Expand Down

0 comments on commit 052d54c

Please sign in to comment.