mirror of
https://github.com/Tonejs/Tone.js
synced 2024-11-16 00:27:58 +00:00
28 lines
637 B
JavaScript
28 lines
637 B
JavaScript
define(["Tone/effect/BitCrusher", "helper/Basic", "helper/EffectTests"], function (BitCrusher, Basic, EffectTests) {
|
|
|
|
describe("BitCrusher", function(){
|
|
|
|
Basic(BitCrusher);
|
|
EffectTests(BitCrusher);
|
|
|
|
context("API", function(){
|
|
|
|
it("can pass in options in the constructor", function(){
|
|
var crusher = new BitCrusher({
|
|
"bits" : 3,
|
|
});
|
|
expect(crusher.bits).to.equal(3);
|
|
crusher.dispose();
|
|
});
|
|
|
|
it("can get/set the options", function(){
|
|
var crusher = new BitCrusher();
|
|
crusher.set({
|
|
"bits" : 5,
|
|
});
|
|
expect(crusher.get().bits).to.equal(5);
|
|
crusher.dispose();
|
|
});
|
|
});
|
|
});
|
|
});
|