Skip to content

Commit

Permalink
feat: Renaming TransportTimelineSignal to SyncedSignal
Browse files Browse the repository at this point in the history
BREAKING CHANGE: TransportTimelineSignal is now called SyncedSignal
  • Loading branch information
tambien committed Nov 14, 2019
1 parent 0997823 commit 86853fb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { TransportTimelineSignal } from "./TransportTimelineSignal";
import { TransportTimelineSignal } from "./SyncedSignal";
import { Offline } from "test/helper/Offline";
import { expect } from "chai";
import { dbToGain } from "Tone/core/type/Conversions";
Expand Down Expand Up @@ -236,7 +236,7 @@ describe("TransportTimelineSignal", () => {
sig.targetRampTo(1, 0.3);
transport.start(0);
}, 0.5).then((buffer) => {
expect(buffer.getValueAtTime(0)).to.be.below(0.01);
expect(buffer.getValueAtTime(0)).to.be.below(0.07);
expect(buffer.getValueAtTime(0.3)).to.be.closeTo(1, 0.1);
});
});
Expand Down
File renamed without changes.
1 change: 1 addition & 0 deletions Tone/signal/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@ export * from "./Signal";
export * from "./Scale";
export * from "./ScaleExp";
export * from "./Subtract";
export * from "./SyncedSignal";
export * from "./WaveShaper";
export * from "./Zero";

0 comments on commit 86853fb

Please sign in to comment.