Tone.js/Tone/signal/Negate.test.ts
Yotam Mann 88dae77c90 removing 'Connect.ts' and updating dependencies
was a pass through and caused other problems of redefining the variable
2020-01-08 14:12:11 -05:00

30 lines
713 B
TypeScript

import { BasicTests } from "test/helper/Basic";
import { ConstantOutput } from "test/helper/ConstantOutput";
import { Negate } from "./Negate";
import { Signal } from "./Signal";
describe("Negate", () => {
BasicTests(Negate);
context("Negating", () => {
it("negateates a positive value", () => {
return ConstantOutput(() => {
const signal = new Signal(1);
const negate = new Negate();
signal.connect(negate);
negate.toDestination();
}, -1);
});
it("makes a negateative value positive", () => {
return ConstantOutput(() => {
const signal = new Signal(-10);
const negate = new Negate();
signal.connect(negate);
negate.toDestination();
}, 10);
});
});
});