Tone.js/test/effect/Distortion.js
tambien ed71d8141b amd to es6 import/export
no longer using AMD (require.js) style imports, and beginning to move to es6 "import/export" statements everywhere.
2019-01-27 13:05:20 -05:00

30 lines
648 B
JavaScript

import Distortion from "Tone/effect/Distortion";
import Basic from "helper/Basic";
import EffectTests from "helper/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();
});
});
});