Tone.js/Tone/effect/Chebyshev.test.ts

51 lines
1.2 KiB
TypeScript
Raw Permalink Normal View History

import { Chebyshev } from "./Chebyshev.js";
import { BasicTests } from "../../test/helper/Basic.js";
import { EffectTests } from "../../test/helper/EffectTests.js";
2019-10-30 03:35:27 +00:00
import { expect } from "chai";
import { CompareToFile } from "../../test/helper/CompareToFile.js";
import { Synth } from "../instrument/index.js";
2019-10-30 03:35:27 +00:00
describe("Chebyshev", () => {
BasicTests(Chebyshev);
EffectTests(Chebyshev, 51);
it("matches a file", () => {
return CompareToFile(
() => {
const cheby = new Chebyshev(100).toDestination();
const synth = new Synth().connect(cheby);
synth.triggerAttackRelease("C2", 0.2);
},
"chebyshev.wav",
0.01
);
2019-10-30 03:35:27 +00:00
});
context("API", () => {
it("can pass in options in the constructor", () => {
const cheby = new Chebyshev({
order: 2,
});
expect(cheby.order).to.equal(2);
cheby.dispose();
});
it("can get/set the options", () => {
const cheby = new Chebyshev();
cheby.set({
order: 40,
});
expect(cheby.get().order).to.equal(40);
cheby.dispose();
});
it("throws an error if order is not an integer", () => {
const cheby = new Chebyshev();
expect(() => {
cheby.order = 0.2;
}).to.throw(Error);
cheby.dispose();
});
2019-10-30 03:35:27 +00:00
});
});