Tone.js/Tone/effect/Distortion.test.ts

42 lines
1 KiB
TypeScript
Raw Normal View History

2019-09-06 02:11:02 +00:00
import { expect } from "chai";
import { BasicTests } from "test/helper/Basic";
import { CompareToFile } from "test/helper/CompareToFile";
import { EffectTests } from "test/helper/EffectTests";
import { Oscillator } from "Tone/source/oscillator/Oscillator";
import { Distortion } from "./Distortion";
describe("Distortion", () => {
BasicTests(Distortion);
EffectTests(Distortion);
it("matches a file", () => {
return CompareToFile(() => {
const dist = new Distortion(0.8).toDestination();
const osc = new Oscillator().connect(dist);
osc.type = "square";
osc.start(0).stop(0.4);
2021-10-13 17:35:40 +00:00
}, "distortion.wav", 0.02);
2019-09-06 02:11:02 +00:00
});
context("API", () => {
it("can pass in options in the constructor", () => {
const dist = new Distortion({
2019-09-14 22:12:44 +00:00
distortion: 0.2,
2019-09-06 02:11:02 +00:00
});
expect(dist.distortion).to.be.closeTo(0.2, 0.01);
dist.dispose();
});
it("can get/set the options", () => {
const dist = new Distortion();
dist.set({
2019-09-14 22:12:44 +00:00
oversample: "4x",
2019-09-06 02:11:02 +00:00
});
expect(dist.get().oversample).to.equal("4x");
dist.dispose();
});
});
});