mirror of
https://github.com/Tonejs/Tone.js
synced 2024-12-27 20:13:07 +00:00
moving tsignore around
This commit is contained in:
parent
c727f35d59
commit
f33260cf98
2 changed files with 2 additions and 2 deletions
|
@ -200,8 +200,8 @@ export abstract class TimeBaseClass<
|
||||||
for (const typeName in this._val) {
|
for (const typeName in this._val) {
|
||||||
if (isDefined(this._val[typeName])) {
|
if (isDefined(this._val[typeName])) {
|
||||||
const quantity = this._val[typeName];
|
const quantity = this._val[typeName];
|
||||||
// @ts-ignore
|
|
||||||
const time =
|
const time =
|
||||||
|
// @ts-ignore
|
||||||
new this.constructor(this.context, typeName).valueOf() *
|
new this.constructor(this.context, typeName).valueOf() *
|
||||||
quantity;
|
quantity;
|
||||||
total += time;
|
total += time;
|
||||||
|
|
|
@ -725,8 +725,8 @@ describe("Player", () => {
|
||||||
});
|
});
|
||||||
getContext().lookAhead = originalLookAhead;
|
getContext().lookAhead = originalLookAhead;
|
||||||
// ensure each source has a different stopTime
|
// ensure each source has a different stopTime
|
||||||
// @ts-ignore
|
|
||||||
expect(checkStopTimes.size).to.equal(
|
expect(checkStopTimes.size).to.equal(
|
||||||
|
// @ts-ignore
|
||||||
player._activeSources.size
|
player._activeSources.size
|
||||||
);
|
);
|
||||||
done();
|
done();
|
||||||
|
|
Loading…
Reference in a new issue