Suppress console.error message in test case

This commit is contained in:
Alan K 2015-08-16 13:18:26 -04:00
parent ddc41f49a5
commit 525e11f203
1 changed files with 3 additions and 1 deletions

View File

@ -53,7 +53,9 @@ describe('Queued operations should error when fs is in error state, issue 258',
it('should get EFILESYSTEMERROR errors on callbacks to queued operations on provider error', function(done) {
var errCount = 0;
var fs = new Filer.FileSystem({provider: provider});
var fs = new Filer.FileSystem({provider: provider}, function(err) {
// Do nothing
});
function maybeDone(err) {
expect(err).to.exist;