Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Commit 5b3b50e

Browse files
committed
bt
1 parent f5a7660 commit 5b3b50e

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/files.js

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ module.exports = (common) => {
252252

253253
describe('.addReadableStream', () => {
254254
it('stream of valid files and dirs', function (done) {
255-
this.timeout(20 * 1000)
255+
this.timeout(40 * 1000)
256256

257257
const content = (name) => ({
258258
path: `test-folder/${name}`,
@@ -495,7 +495,9 @@ module.exports = (common) => {
495495
})
496496
})
497497

498-
it('directory', (done) => {
498+
it('directory', function (done) {
499+
this.timeout(40 * 1000)
500+
499501
series([
500502
(cb) => {
501503
const content = (name) => ({
@@ -762,7 +764,7 @@ module.exports = (common) => {
762764

763765
describe('.lsReadableStream', () => {
764766
before(function (done) {
765-
this.timeout(20 * 1000)
767+
this.timeout(40 * 1000)
766768

767769
const content = (name) => ({
768770
path: `test-folder/${name}`,
@@ -842,7 +844,7 @@ module.exports = (common) => {
842844

843845
describe('.lsPullStream', () => {
844846
before(function (done) {
845-
this.timeout(20 * 1000)
847+
this.timeout(40 * 1000)
846848
const content = (name) => ({
847849
path: `test-folder/${name}`,
848850
content: directory.files[name]

0 commit comments

Comments
 (0)