We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14e7c76 commit dde8001Copy full SHA for dde8001
test/root.js
@@ -63,7 +63,9 @@ module.exports = (callback, options) => {
63
}
64
setTimeout(() => callback(false, 'Timeout'), options.timeout);
65
66
- const server = new webdav.WebDAVServer();
+ const server = new webdav.WebDAVServer({
67
+ httpAuthentication: new webdav.HTTPBasicAuthentication('default realm')
68
+ });
69
server.start(options.port + this.index, () => {
70
fn(callback, server);
71
})
0 commit comments