Example #1
0
        this.swampServicesManager.stopAllRunning().finally(function () {

            this.utils.log('Bye Bye...',
                this.utils.LOG_TYPE.INFO, false, false, this.mainLoggersManager.getOut());

            if (this.dashboardManager.isRunning()) {
                appolo.launcher.reset();
            }

            this._disposeDeferred.resolve();

            this.logWorkerManager.dispose();

            // exit swamp main process
            exitProcess && process.exit(0);

        }.bind(this));
 beforeEach(function () {
     appolo.launcher.launch({
         port: 8182,
         environment: "testing"
     });
 });
 afterEach(function () {
     appolo.launcher.reset();
 });