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
50 lines
1.2 KiB
TypeScript
50 lines
1.2 KiB
TypeScript
import { Chebyshev } from "./Chebyshev.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 { Synth } from "../instrument/index.js";
|
|
|
|
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
|
|
);
|
|
});
|
|
|
|
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();
|
|
});
|
|
});
|
|
});
|