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

28 lines
661 B
JavaScript

define(["Tone/effect/Distortion", "helper/Basic", "helper/EffectTests"], function (Distortion, Basic, EffectTests) {
describe("Distortion", function(){
Basic(Distortion);
EffectTests(Distortion);
context("API", function(){
it("can pass in options in the constructor", function(){
var dist = new Distortion({
"distortion" : 0.2,
});
expect(dist.distortion).to.be.closeTo(0.2, 0.01);
dist.dispose();
});
it("can get/set the options", function(){
var dist = new Distortion();
dist.set({
"oversample" : "4x",
});
expect(dist.get().oversample).to.equal("4x");
dist.dispose();
});
});
});
});