mirror of
https://github.com/Tonejs/Tone.js
synced 2024-12-29 04:53:10 +00:00
53 lines
1.3 KiB
TypeScript
53 lines
1.3 KiB
TypeScript
import { Chorus } from "./Chorus";
|
|
import { BasicTests } from "test/helper/Basic";
|
|
import { EffectTests } from "test/helper/EffectTests";
|
|
import { expect } from "chai";
|
|
import { CompareToFile } from "test/helper/CompareToFile";
|
|
import { Oscillator } from "Tone/source";
|
|
|
|
describe("Chorus", () => {
|
|
|
|
BasicTests(Chorus);
|
|
EffectTests(Chorus);
|
|
|
|
it("matches a file", () => {
|
|
return CompareToFile(() => {
|
|
const chorus = new Chorus().toDestination();
|
|
const osc = new Oscillator(220, "sawtooth").connect(chorus).start();
|
|
}, "chorus.wav", 0.15);
|
|
});
|
|
|
|
context("API", () => {
|
|
|
|
it("can pass in options in the constructor", () => {
|
|
const chorus = new Chorus({
|
|
frequency: 2,
|
|
delayTime: 1,
|
|
depth: 0.4,
|
|
spread: 90
|
|
});
|
|
expect(chorus.frequency.value).to.be.closeTo(2, 0.01);
|
|
expect(chorus.delayTime).to.be.closeTo(1, 0.01);
|
|
expect(chorus.depth).to.be.closeTo(0.4, 0.01);
|
|
expect(chorus.spread).to.be.equal(90);
|
|
chorus.dispose();
|
|
});
|
|
|
|
it("can get/set the options", () => {
|
|
const chorus = new Chorus();
|
|
chorus.set({
|
|
type: "square",
|
|
});
|
|
expect(chorus.get().type).to.equal("square");
|
|
chorus.dispose();
|
|
});
|
|
|
|
it("can get/set the delayTime", () => {
|
|
const chorus = new Chorus();
|
|
chorus.delayTime = 3;
|
|
expect(chorus.delayTime).to.equal(3);
|
|
chorus.dispose();
|
|
});
|
|
});
|
|
});
|
|
|