Tone.js/Tone/effect/BitCrusher.test.ts

60 lines
1.5 KiB
TypeScript
Raw Normal View History

import { BitCrusher } from "./BitCrusher.js";
import { FeedbackCombFilter } from "../component/filter/FeedbackCombFilter.js";
import { Oscillator } from "../source/oscillator/Oscillator.js";
import { BasicTests } from "../../test/helper/Basic.js";
import { EffectTests } from "../../test/helper/EffectTests.js";
import { CompareToFile } from "../../test/helper/CompareToFile.js";
import { expect } from "chai";
describe("BitCrusher", () => {
BasicTests(BitCrusher);
EffectTests(BitCrusher);
context("API", () => {
it("matches a file", () => {
return CompareToFile(
() => {
const crusher = new BitCrusher({ bits: 4 }).toDestination();
const osc = new Oscillator(110).connect(crusher);
osc.start(0);
},
"bitCrusher.wav",
0.01
);
});
it("can pass in options in the constructor", () => {
const crusher = new BitCrusher({
bits: 3,
});
expect(crusher.bits.value).to.equal(3);
crusher.dispose();
});
it("can get/set the options", () => {
const crusher = new BitCrusher(4);
expect(crusher.bits.value).to.equal(4);
crusher.set({
bits: 5,
});
expect(crusher.get().bits).to.equal(5);
crusher.dispose();
});
});
2022-03-21 15:34:23 +00:00
it("should be usable with the FeedbackCombFilter", (done) => {
new BitCrusher(4);
new FeedbackCombFilter();
const handle = setTimeout(() => {
window.onunhandledrejection = null;
done();
}, 100);
window.onunhandledrejection = (event) => {
done(event.reason);
clearTimeout(handle);
};
});
});