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

Commit 2b61c90

Browse files
committed
chore: bump timeouts
1 parent 022952c commit 2b61c90

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

src/files.js

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,9 @@ module.exports = (common) => {
251251
})
252252

253253
describe('.addReadableStream', () => {
254-
it('stream of valid files and dirs', (done) => {
254+
it('stream of valid files and dirs', function (done) {
255+
this.timeout(20 * 1000)
256+
255257
const content = (name) => ({
256258
path: `test-folder/${name}`,
257259
content: directory.files[name]
@@ -664,7 +666,8 @@ module.exports = (common) => {
664666
})
665667

666668
describe('.ls', () => {
667-
before((done) => {
669+
before(function (done) {
670+
this.timeout(20 * 1000)
668671
const content = (name) => ({
669672
path: `test-folder/${name}`,
670673
content: directory.files[name]
@@ -758,7 +761,9 @@ module.exports = (common) => {
758761
})
759762

760763
describe('.lsReadableStream', () => {
761-
before((done) => {
764+
before(function (done) {
765+
this.timeout(20 * 1000)
766+
762767
const content = (name) => ({
763768
path: `test-folder/${name}`,
764769
content: directory.files[name]
@@ -836,7 +841,8 @@ module.exports = (common) => {
836841
})
837842

838843
describe('.lsPullStream', () => {
839-
before((done) => {
844+
before(function (done) {
845+
this.timeout(20 * 1000)
840846
const content = (name) => ({
841847
path: `test-folder/${name}`,
842848
content: directory.files[name]

0 commit comments

Comments
 (0)