Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
michielbdejong committed Feb 23, 2021
1 parent 5b29bce commit d32df3b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions test/surface/acl-doc-application.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,8 @@ describe('ACL doc application', () => {
afterAll(() => {
return solidLogicAlice.recursiveDelete(testFolderUrl);
});

it('does not allow GET accessTo/', async () => {
// DISPUTED: https://github.com/solid/specification/issues/193#issuecomment-784050910
it.skip('does not allow GET accessTo/', async () => {
const result = await solidLogicBob.fetch(containerUrl);
expect(result.status).toEqual(403);
});
Expand Down
3 changes: 2 additions & 1 deletion test/surface/create.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,8 @@ describe('Create', () => {
});
expect(responseCodeGroup(result.status)).toEqual("2xx");
});
it(`Is disallowed otherwise`, async () => {
// DISPUTED: https://github.com/solid/specification/issues/193#issuecomment-784050910
it.skip(`Is disallowed otherwise`, async () => {
const containerUrl = `${testFolderUrl}3/allOtherModes/`;
// This will do mkdir-p:
await solidLogicAlice.fetch(`${containerUrl}test.txt`, {
Expand Down

0 comments on commit d32df3b

Please sign in to comment.