mirror of
https://github.com/Tonejs/Tone.js
synced 2024-11-16 00:27:58 +00:00
ed71d8141b
no longer using AMD (require.js) style imports, and beginning to move to es6 "import/export" statements everywhere.
27 lines
703 B
JavaScript
27 lines
703 B
JavaScript
import Effect from "Tone/effect/Effect";
|
|
import StereoEffect from "Tone/effect/StereoEffect";
|
|
import Basic from "helper/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();
|
|
});
|
|
});
|
|
});
|
|
|