Suppress console.error message in test case
This commit is contained in:
parent
ddc41f49a5
commit
525e11f203
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue