mirror of
https://github.com/Tonejs/Tone.js
synced 2024-11-16 16:48:00 +00:00
28 lines
661 B
JavaScript
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();
|
|
});
|
|
});
|
|
});
|
|
});
|