Tone.js/test/effect/Tremolo.js

48 lines
1.3 KiB
JavaScript
Raw Normal View History

2015-08-26 14:29:35 +00:00
define(["Tone/effect/Tremolo", "helper/Basic", "helper/EffectTests"], function (Tremolo, Basic, EffectTests) {
2015-12-06 22:37:45 +00:00
describe("Tremolo", function(){
2015-08-26 14:29:35 +00:00
Basic(Tremolo);
EffectTests(Tremolo);
context("API", function(){
it ("can pass in options in the constructor", function(){
var tremolo = new Tremolo({
"depth" : 0.2,
2015-12-06 22:37:45 +00:00
"type" : "sawtooth",
"spread" : 160,
2015-08-26 14:29:35 +00:00
});
expect(tremolo.depth.value).to.be.closeTo(0.2, 0.001);
expect(tremolo.type).to.equal("sawtooth");
2015-12-06 22:37:45 +00:00
expect(tremolo.spread).to.equal(160);
2015-08-26 14:29:35 +00:00
tremolo.dispose();
});
it ("can be started and stopped", function(){
var tremolo = new Tremolo();
tremolo.start().stop("+0.2");
tremolo.dispose();
});
it ("can get/set the options", function(){
var tremolo = new Tremolo();
tremolo.set({
"frequency" : 2.4,
"type" : "triangle"
});
expect(tremolo.get().frequency).to.be.closeTo(2.4, 0.01);
expect(tremolo.get().type).to.equal("triangle");
tremolo.dispose();
});
it ("can set the frequency and depth", function(){
var tremolo = new Tremolo();
tremolo.depth.value = 0.4;
tremolo.frequency.value = 0.4;
expect(tremolo.depth.value).to.be.closeTo(0.4, 0.01);
expect(tremolo.frequency.value).to.be.closeTo(0.4, 0.01);
tremolo.dispose();
});
});
});
});