Skip to content

Commit 6162be6

Browse files
Merge branch 'master' into update-mashlib
2 parents 4fa0468 + 068b45d commit 6162be6

File tree

6 files changed

+16
-8
lines changed

6 files changed

+16
-8
lines changed

test/integration/account-creation-oidc-test.js

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ const ldnode = require('../../index')
77
const path = require('path')
88
const fs = require('fs-extra')
99

10-
describe('AccountManager (OIDC account creation tests)', function () {
10+
// FIXME: #1502
11+
describe.skip('AccountManager (OIDC account creation tests)', function () {
1112
const port = 3457
1213
const serverUri = `https://localhost:${port}`
1314
const host = `localhost:${port}`
@@ -223,7 +224,8 @@ describe('AccountManager (OIDC account creation tests)', function () {
223224
})
224225
})
225226

226-
describe('Single User signup page', () => {
227+
// FIXME: #1502
228+
describe.skip('Single User signup page', () => {
227229
const serverUri = 'https://localhost:7457'
228230
const port = 7457
229231
let ldpHttpsServer
@@ -260,7 +262,8 @@ describe('Single User signup page', () => {
260262
})
261263
})
262264

263-
describe('Signup page where Terms & Conditions are not being enforced', () => {
265+
// FIXME: #1502
266+
describe.skip('Signup page where Terms & Conditions are not being enforced', () => {
264267
const port = 3457
265268
const host = `localhost:${port}`
266269
const root = path.join(__dirname, '../resources/accounts/')

test/integration/account-manager-test.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ afterEach(() => {
2525
fs.removeSync(path.join(__dirname, '../resources/accounts/alice.example.com'))
2626
})
2727

28-
describe('AccountManager', () => {
28+
// FIXME #1502
29+
describe.skip('AccountManager', () => {
2930
describe('accountExists()', () => {
3031
const host = SolidHost.from({ serverUri: 'https://localhost' })
3132

test/integration/account-template-test.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ const AccountTemplate = require('../../lib/models/account-template')
1414
const templatePath = path.join(__dirname, '../../default-templates/new-account')
1515
const accountPath = path.join(__dirname, '../resources/new-account')
1616

17-
describe('AccountTemplate', () => {
17+
// FIXME #1502
18+
describe.skip('AccountTemplate', () => {
1819
beforeEach(() => {
1920
fs.removeSync(accountPath)
2021
})

test/integration/acl-oidc-test.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ const argv = {
5656
host: { serverUri }
5757
}
5858

59-
describe('ACL with WebID+OIDC over HTTP', function () {
59+
// FIXME #1502
60+
describe.skip('ACL with WebID+OIDC over HTTP', function () {
6061
let ldp, ldpHttpsServer
6162

6263
before(checkDnsSettings)

test/integration/authentication-oidc-test.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ chai.use(require('dirty-chai'))
1919

2020
// In this test we always assume that we are Alice
2121

22-
describe('Authentication API (OIDC)', () => {
22+
// FIXME #1502
23+
describe.skip('Authentication API (OIDC)', () => {
2324
let alice, bob // eslint-disable-line no-unused-vars
2425

2526
const aliceServerUri = 'https://localhost:7000'

test/integration/capability-discovery-test.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ const supertest = require('supertest')
77
const expect = require('chai').expect
88
// In this test we always assume that we are Alice
99

10-
describe('API', () => {
10+
// FIXME #1502
11+
describe.skip('API', () => {
1112
let alice
1213

1314
const aliceServerUri = 'https://localhost:5000'

0 commit comments

Comments
 (0)