File tree Expand file tree Collapse file tree 4 files changed +6
-1
lines changed Expand file tree Collapse file tree 4 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 5252 "lockfile" : " ^1.0.3" ,
5353 "mkdirp" : " ^0.5.1" ,
5454 "mongodb-download" : " ^2.2.3" ,
55+ "regenerator-runtime" : " ^0.11.0" ,
5556 "tmp" : " ^0.0.33" ,
5657 "uuid" : " ^3.0.1"
5758 },
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ import getport from 'get-port';
77import Debug from 'debug' ;
88import MongoInstance from './util/MongoInstance' ;
99
10+ require ( 'regenerator-runtime/runtime' ) ; // eslint-disable-line
1011tmp . setGracefulCleanup ( ) ;
1112
1213export type MongoMemoryServerOptsT = {
Original file line number Diff line number Diff line change @@ -7,6 +7,8 @@ import path from 'path';
77import LockFile from 'lockfile' ;
88import mkdirp from 'mkdirp' ;
99
10+ require ( 'regenerator-runtime/runtime' ) ; // eslint-disable-line
11+
1012export type MongoBinaryCache = {
1113 [ version : string ] : string ,
1214} ;
Original file line number Diff line number Diff line change 44import { ChildProcess , spawn as spawnChild } from 'child_process' ;
55import path from 'path' ;
66import MongoBinary from './MongoBinary' ;
7-
87import type { MongoBinaryOpts } from './MongoBinary' ;
98
9+ require ( 'regenerator-runtime/runtime' ) ; // eslint-disable-line
10+
1011export type MongodOps = {
1112 // instance options
1213 instance : {
You can’t perform that action at this time.
0 commit comments