Skip to content

Commit af97dac

Browse files
kjetilkrubensworks
authored andcommitted
Let tests that timeout run
1 parent 1ee78db commit af97dac

File tree

1 file changed

+10
-8
lines changed

1 file changed

+10
-8
lines changed

test/integration/acl-oidc-test.js

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ describe('ACL with WebID+OIDC over HTTP', function () {
530530
// done()
531531
// })
532532
// })
533-
it.skip('user1 should be able to access test directory', function (done) {
533+
it('user1 should be able to access test directory', function (done) {
534534
var options = createOptions('/group/test-folder/', 'user1')
535535

536536
request.head(options, function (error, response, body) {
@@ -539,7 +539,7 @@ describe('ACL with WebID+OIDC over HTTP', function () {
539539
done()
540540
})
541541
})
542-
it.skip('user2 should be able to access test directory', function (done) {
542+
it('user2 should be able to access test directory', function (done) {
543543
var options = createOptions('/group/test-folder/', 'user2')
544544

545545
request.head(options, function (error, response, body) {
@@ -548,7 +548,7 @@ describe('ACL with WebID+OIDC over HTTP', function () {
548548
done()
549549
})
550550
})
551-
it.skip('user2 should be able to write a file in the test directory',
551+
it('user2 should be able to write a file in the test directory',
552552
function (done) {
553553
var options = createOptions('/group/test-folder/test.ttl', 'user2', 'text/turtle')
554554
options.body = '<#Dahut> a <https://dbpedia.org/resource/Category:French_legendary_creatures>.\n'
@@ -559,7 +559,8 @@ describe('ACL with WebID+OIDC over HTTP', function () {
559559
done()
560560
})
561561
})
562-
it.skip('user1 should be able to get the file', function (done) {
562+
563+
it('user1 should be able to get the file', function (done) {
563564
var options = createOptions('/group/test-folder/test.ttl', 'user1', 'text/turtle')
564565

565566
request.get(options, function (error, response, body) {
@@ -568,7 +569,7 @@ describe('ACL with WebID+OIDC over HTTP', function () {
568569
done()
569570
})
570571
})
571-
it.skip('user2 should not be able to write to the ACL',
572+
it('user2 should not be able to write to the ACL',
572573
function (done) {
573574
var options = createOptions('/group/test-folder/.acl', 'user2', 'text/turtle')
574575
options.body = '<#Dahut> a <https://dbpedia.org/resource/Category:French_legendary_creatures>.\n'
@@ -579,7 +580,8 @@ describe('ACL with WebID+OIDC over HTTP', function () {
579580
done()
580581
})
581582
})
582-
it.skip('user1 should be able to delete the file', function (done) {
583+
584+
it('user1 should be able to delete the file', function (done) {
583585
var options = createOptions('/group/test-folder/test.ttl', 'user1', 'text/turtle')
584586

585587
request.delete(options, function (error, response, body) {
@@ -588,7 +590,7 @@ describe('ACL with WebID+OIDC over HTTP', function () {
588590
done()
589591
})
590592
})
591-
it.skip('We should have a 500 with invalid group listings',
593+
it('We should have a 500 with invalid group listings',
592594
function (done) {
593595
var options = createOptions('/group/test-folder/some-other-file.txt', 'user2')
594596

@@ -598,7 +600,7 @@ describe('ACL with WebID+OIDC over HTTP', function () {
598600
done()
599601
})
600602
})
601-
it.skip('We should have a 404 for non-existent file',
603+
it('We should have a 404 for non-existent file',
602604
function (done) {
603605
var options = createOptions('/group/test-folder/nothere.txt', 'user2')
604606

0 commit comments

Comments
 (0)