We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e785193 commit aa0b6b9Copy full SHA for aa0b6b9
test/integration/acl-tls.js
@@ -53,8 +53,6 @@ var userCredentials = {
53
54
describe('ACL with WebID+TLS', function () {
55
this.timeout(10000)
56
- process.env.NODE_TLS_REJECT_UNAUTHORIZED = '0'
57
-
58
var ldpHttpsServer
59
var ldp = ldnode.createServer({
60
mount: '/test',
@@ -63,7 +61,8 @@ describe('ACL with WebID+TLS', function () {
63
61
sslCert: path.join(__dirname, '../keys/cert.pem'),
64
62
webid: true,
65
strictOrigin: true,
66
- auth: 'tls'
+ auth: 'tls',
+ rejectUnauthorized: false
67
})
68
69
before(function (done) {
0 commit comments