mirror of
https://github.com/Tonejs/Tone.js
synced 2024-12-26 19:43:12 +00:00
aaf880c925
* WIP moving tests to web-test-runner * updating thresholds * Adding file extensions * Testing integrations * linting * fixing dep * moving back to root dir * prettier all of the files * updating eslint rules to use with prettier * remove import package * moving tsignore around * removing unneeded ignores * all tests run on puppeteer, no need for testing guards * linting * import type syntax * cleaning up * Update package.json
42 lines
1 KiB
TypeScript
42 lines
1 KiB
TypeScript
import { JCReverb } from "./JCReverb.js";
|
|
import { BasicTests } from "../../test/helper/Basic.js";
|
|
import { EffectTests } from "../../test/helper/EffectTests.js";
|
|
import { expect } from "chai";
|
|
import { CompareToFile } from "../../test/helper/CompareToFile.js";
|
|
import { Noise } from "../source/Noise.js";
|
|
|
|
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();
|
|
});
|
|
});
|
|
});
|