moving tsignore around

This commit is contained in:
Yotam Mann 2024-05-03 11:15:11 -04:00
parent c727f35d59
commit f33260cf98
2 changed files with 2 additions and 2 deletions

View file

@ -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;

View file

@ -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();