mirror of
https://github.com/Tonejs/Tone.js
synced 2024-11-16 16:48:00 +00:00
bfc3d7ed15
more consistent with the Web Audio API
24 lines
512 B
TypeScript
24 lines
512 B
TypeScript
import { BasicTests } from "test/helper/Basic";
|
|
import { connectTo } from "test/helper/Connect";
|
|
import { ConstantOutput } from "test/helper/ConstantOutput";
|
|
import { Zero } from "./Zero";
|
|
|
|
describe("Zero", () => {
|
|
|
|
BasicTests(Zero);
|
|
|
|
context("Zero", () => {
|
|
|
|
it("handles output connections", () => {
|
|
const abs = new Zero();
|
|
abs.connect(connectTo());
|
|
abs.dispose();
|
|
});
|
|
|
|
it("always outputs 0", () => {
|
|
return ConstantOutput(() => {
|
|
new Zero().toDestination();
|
|
}, 0, 0);
|
|
});
|
|
});
|
|
});
|