Skip to content

Commit 73456f3

Browse files
committed
delete passing in ldp-test
1 parent cbaae77 commit 73456f3

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

test/integration/ldp-test.js

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -233,13 +233,13 @@ describe('LDP', function () {
233233
})
234234
})
235235

236-
describe.skip('delete', function () {
236+
describe('delete', function () {
237237
// FIXME: https://github.com/solid/node-solid-server/issues/1502
238-
it.skip('should error when deleting a non-existing file', () => {
238+
it('should error when deleting a non-existing file', () => {
239239
return assert.isRejected(ldp.delete('/resources/testPut.txt'))
240240
})
241241

242-
it.skip('should delete a file with ACL in an existing dir', async () => {
242+
it('should delete a file with ACL in an existing dir', async () => {
243243
// First create a dummy file
244244
const stream = stringToStream('hello world')
245245
await ldp.put('/resources/testPut.txt', stream, 'text/plain')
@@ -271,7 +271,7 @@ describe('LDP', function () {
271271
})
272272
})
273273

274-
it.skip('should fail to delete a non-empty folder', async () => {
274+
it('should fail to delete a non-empty folder', async () => {
275275
// First create a dummy file
276276
const stream = stringToStream('hello world')
277277
await ldp.put('/resources/dummy/testPutBlocking.txt', stream, 'text/plain')
@@ -286,7 +286,7 @@ describe('LDP', function () {
286286
return assert.isRejected(ldp.delete('/resources/dummy/'))
287287
})
288288

289-
it.skip('should fail to delete nested non-empty folders', async () => {
289+
it('should fail to delete nested non-empty folders', async () => {
290290
// First create a dummy file
291291
const stream = stringToStream('hello world')
292292
await ldp.put('/resources/dummy/dummy2/testPutBlocking.txt', stream, 'text/plain')
@@ -313,6 +313,7 @@ describe('LDP', function () {
313313
}
314314
})
315315
})
316+
316317
describe.skip('listContainer', function () {
317318
/*
318319
it('should inherit type if file is .ttl', function (done) {

0 commit comments

Comments
 (0)