Tone.js/test/source/Microphone.js

13 lines
341 B
JavaScript
Raw Normal View History

2015-09-19 00:19:24 +00:00
define(["Tone/source/Microphone", "helper/Basic", "Tone/source/ExternalInput"],
function (Microphone, Basic, ExternalInput) {
2015-08-24 21:33:08 +00:00
describe("Microphone", function(){
Basic(Microphone);
2015-09-19 00:19:24 +00:00
it ("extends ExternalInput", function(){
var mic = new Microphone();
expect(mic).to.be.instanceOf(ExternalInput);
mic.dispose();
});
2015-08-24 21:33:08 +00:00
});
});