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

Commit 0b5dbae

Browse files
committed
config.replace is not supported anymore
1 parent 674e257 commit 0b5dbae

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

test/cli/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ describe('config', () => runOnAndOff((thing) => {
7272
})
7373
})
7474

75-
describe('replace', () => {
75+
describe.skip('replace', () => {
7676
it('replace config with file', () => {
7777
const filePath = 'test/fixtures/test-data/otherconfig'
7878
const expectedConfig = JSON.parse(fs.readFileSync(filePath, 'utf8'))

test/http-api/over-ipfs-api/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ module.exports = (ctl) => {
7272

7373
// This one is one stale mode till go-ipfs decides
7474
// what to do with the .replace command
75-
describe('.replace', () => {
75+
describe.skip('.replace', () => {
7676
it('returns error if the config is invalid', (done) => {
7777
const filePath = 'test/fixtures/test-data/badconfig'
7878

test/http-api/spec/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ module.exports = (http) => {
153153
})
154154
})
155155

156-
describe('/config/replace', () => {
156+
describe.skip('/config/replace', () => {
157157
it('returns 400 if no config is provided', (done) => {
158158
const form = new FormData()
159159
const headers = form.getHeaders()

0 commit comments

Comments
 (0)