In my integration tests I am using a tank something like this:
tank : Tank
constructor(url){
this.tank = new Tank(new Waterfall(url));
}
If I call this.tank.close() my tests do not stop. Switching to only a Waterfall immediatly fixes this issue:
tank : Waterfall
constructor(url){
this.tank = new Waterfall(url);
}
Something seems to stop the tank from closing correctly. Any ideas on how I can provide more details?
In my integration tests I am using a tank something like this:
If I call
this.tank.close()my tests do not stop. Switching to only aWaterfallimmediatly fixes this issue: