Skip to content
This repository was archived by the owner on Aug 1, 2023. It is now read-only.

Commit 929889e

Browse files
committed
fix: skip repo tests on windows
1 parent 9050cc0 commit 929889e

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

test/repo.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ const os = require('os')
1212
const path = require('path')
1313
const hat = require('hat')
1414

15+
const isWindows = os.platform() === 'win32'
16+
1517
const DaemonFactory = require('ipfsd-ctl')
1618
const df = DaemonFactory.create()
1719

@@ -24,6 +26,11 @@ function catAndCheck (api, hash, data, callback) {
2426
}
2527

2628
describe('repo', () => {
29+
// skipping until https://github.com/ipfs/interop/issues/8 is addressed
30+
if (isWindows) {
31+
return
32+
}
33+
2734
it('read repo: go -> js', function (done) {
2835
this.timeout(50 * 1000)
2936

0 commit comments

Comments
 (0)