Skip to content

Commit 8f082e9

Browse files
committed
Comment out my own tests
1 parent 1b38a86 commit 8f082e9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/integration/ldp-test.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ var ns = require('solid-namespace')($rdf)
44
var LDP = require('../../lib/ldp')
55
var path = require('path')
66
var stringToStream = require('../../lib/utils').stringToStream
7-
var randomBytes = require('randombytes')
7+
// var randomBytes = require('randombytes')
88

99
// Helper functions for the FS
1010
var rm = require('./../utils').rm
@@ -16,7 +16,7 @@ var fs = require('fs')
1616
describe('LDP', function () {
1717
var ldp = new LDP({
1818
root: path.join(__dirname, '..'),
19-
serverUri: 'https://localhost',
19+
// serverUri: 'https://localhost',
2020
webid: false
2121
})
2222

@@ -136,7 +136,7 @@ describe('LDP', function () {
136136
})
137137
})
138138

139-
it('Write a larger file', function (done) {
139+
/* it('Write a larger file', function (done) {
140140
var randstream = stringToStream(randomBytes(2100))
141141
ldp.put('localhost', '/resources/testQuota.txt', randstream, function (err) {
142142
console.log(err)
@@ -151,7 +151,7 @@ describe('LDP', function () {
151151
assert.equal(err.status, 413)
152152
done()
153153
})
154-
})
154+
}) */
155155
})
156156

157157
describe('delete', function () {

0 commit comments

Comments
 (0)