From b36242c0b9763fd01a48ecb9c3fd83cc575f1c65 Mon Sep 17 00:00:00 2001 From: Sema Date: Fri, 17 Aug 2018 23:58:31 -0400 Subject: [PATCH] Skip onstatechange test --- test/mocha.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/mocha.js b/test/mocha.js index 7470e3b..89d9c8e 100644 --- a/test/mocha.js +++ b/test/mocha.js @@ -330,7 +330,7 @@ describe('Web MIDI API', function() { JZZ.requestMIDIAccess().then(onSuccess, onFail); }); if (MT && (process.platform == 'darwin' || process.platform == 'linux')) { - it('onstatechange', function(done) { + it.skip('onstatechange', function(done) { var src = MT.MidiSrc('Virtual MIDI-In'); function onSuccess(midiaccess) { midiaccess.onstatechange = function() { src.disconnect(); done(); };