Tone.js/test/source/Microphone.js
2015-09-18 17:19:24 -07:00

13 lines
No EOL
341 B
JavaScript

define(["Tone/source/Microphone", "helper/Basic", "Tone/source/ExternalInput"],
function (Microphone, Basic, ExternalInput) {
describe("Microphone", function(){
Basic(Microphone);
it ("extends ExternalInput", function(){
var mic = new Microphone();
expect(mic).to.be.instanceOf(ExternalInput);
mic.dispose();
});
});
});