mirror of
https://github.com/Tonejs/Tone.js
synced 2024-12-28 12:33:12 +00:00
41 lines
1,013 B
TypeScript
41 lines
1,013 B
TypeScript
import { JCReverb } from "./JCReverb";
|
|
import { BasicTests } from "test/helper/Basic";
|
|
import { EffectTests } from "test/helper/EffectTests";
|
|
import { expect } from "chai";
|
|
import { CompareToFile } from "test/helper/CompareToFile";
|
|
import { Noise } from "Tone/source/Noise";
|
|
|
|
describe("JCReverb", () => {
|
|
|
|
BasicTests(JCReverb);
|
|
EffectTests(JCReverb);
|
|
|
|
it("matches a file", () => {
|
|
return CompareToFile(() => {
|
|
const reverb = new JCReverb().toDestination();
|
|
const noise = new Noise().connect(reverb);
|
|
noise.start(0).stop(0.1);
|
|
}, "jcReverb.wav", 0.2);
|
|
});
|
|
|
|
context("API", () => {
|
|
|
|
it("can pass in options in the constructor", () => {
|
|
const reverb = new JCReverb({
|
|
roomSize: 0.2,
|
|
});
|
|
expect(reverb.roomSize.value).to.be.closeTo(0.2, 0.01);
|
|
reverb.dispose();
|
|
});
|
|
|
|
it("can get/set the options", () => {
|
|
const reverb = new JCReverb();
|
|
reverb.set({
|
|
roomSize: 0.23,
|
|
});
|
|
expect(reverb.get().roomSize).to.be.closeTo(0.23, 0.01);
|
|
reverb.dispose();
|
|
});
|
|
});
|
|
});
|
|
|