tone 15.5.25 → 15.5.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -10,7 +10,7 @@ import { Gate } from "./Gate.js";
|
|
|
10
10
|
describe("Gate", () => {
|
|
11
11
|
BasicTests(Gate);
|
|
12
12
|
|
|
13
|
-
it
|
|
13
|
+
it("matches a file", () => {
|
|
14
14
|
return CompareToFile(
|
|
15
15
|
() => {
|
|
16
16
|
const gate = new Gate(-10, 0.1).toDestination();
|
|
@@ -64,7 +64,7 @@ describe("Gate", () => {
|
|
|
64
64
|
sig.connect(gate);
|
|
65
65
|
gate.toDestination();
|
|
66
66
|
});
|
|
67
|
-
expect(buffer.
|
|
67
|
+
expect(buffer.max()).to.be.above(0);
|
|
68
68
|
});
|
|
69
69
|
});
|
|
70
70
|
});
|
|
@@ -184,7 +184,7 @@ describe("ToneConstantSource", () => {
|
|
|
184
184
|
});
|
|
185
185
|
});
|
|
186
186
|
|
|
187
|
-
context
|
|
187
|
+
context("Suspended AudioContext", () => {
|
|
188
188
|
it("does nothing when AudioContext returns to suspended", () => {
|
|
189
189
|
const context = new Context();
|
|
190
190
|
expect(context.state).to.equal("suspended");
|
package/Tone/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const version: string = "15.5.
|
|
1
|
+
export const version: string = "15.5.26";
|