Tone.js/test/effect/StereoEffect.js
2017-12-30 11:26:29 -05:00

25 lines
712 B
JavaScript

define(["Tone/effect/Effect", "Tone/effect/StereoEffect", "helper/Basic"], function (Effect, StereoEffect, Basic) {
describe("StereoEffect", function(){
Basic(StereoEffect);
context("Stereo", function(){
it("extends Effect", function(){
var stereo = new StereoEffect();
expect(stereo).to.be.instanceOf(Effect);
stereo.dispose();
});
it("has a mid and a side send and return", function(){
var stereo = new StereoEffect();
expect(stereo).to.have.property("effectSendL");
expect(stereo).to.have.property("effectSendR");
expect(stereo).to.have.property("effectReturnL");
expect(stereo).to.have.property("effectReturnR");
stereo.dispose();
});
});
});
});