Fix 'bye bye' being output in test progress

This commit is contained in:
Timothy Warren 2016-01-26 20:34:35 -05:00
parent 6677a677c4
commit 11f869b327
2 changed files with 2 additions and 6 deletions

View File

@ -57,7 +57,7 @@ const ESLINT_SETTINGS = {
const MOCHA_OPTIONS = {
ui: 'tdd',
bail: true,
reporter: 'list',
reporter: 'dot',
timeout: 10000,
};

View File

@ -93,10 +93,6 @@ if (connection) {
.get();
expect(promise).to.be.fulfilled;
});
suiteTeardown(() => {
qb.end();
});
});
});
}