Tone.js/Tone/signal/Zero.test.ts

28 lines
593 B
TypeScript
Raw Normal View History

import { expect } from "chai";
import { BasicTests } from "../../test/helper/Basic.js";
import { ConstantOutput } from "../../test/helper/ConstantOutput.js";
import { Zero } from "./Zero.js";
2019-07-11 21:11:07 +00:00
describe("Zero", () => {
BasicTests(Zero);
context("Zero", () => {
it("has 0 inputs and 1 output", () => {
const zero = new Zero();
expect(zero.numberOfInputs).to.equal(0);
expect(zero.numberOfOutputs).to.equal(1);
zero.dispose();
2019-07-11 21:11:07 +00:00
});
it("always outputs 0", () => {
return ConstantOutput(
() => {
new Zero().toDestination();
},
0,
0
);
2019-07-11 21:11:07 +00:00
});
});
});