mirror of
https://github.com/Tonejs/Tone.js
synced 2024-12-28 04:23:15 +00:00
aaf880c925
* WIP moving tests to web-test-runner * updating thresholds * Adding file extensions * Testing integrations * linting * fixing dep * moving back to root dir * prettier all of the files * updating eslint rules to use with prettier * remove import package * moving tsignore around * removing unneeded ignores * all tests run on puppeteer, no need for testing guards * linting * import type syntax * cleaning up * Update package.json
29 lines
791 B
TypeScript
29 lines
791 B
TypeScript
import { expect } from "chai";
|
|
import { BasicTests, warns } from "../../../test/helper/Basic.js";
|
|
import { PassAudio } from "../../../test/helper/PassAudio.js";
|
|
import { Signal } from "../../signal/Signal.js";
|
|
import { DCMeter } from "./DCMeter.js";
|
|
|
|
describe("DCMeter", () => {
|
|
BasicTests(DCMeter);
|
|
|
|
context("DCMetering", () => {
|
|
it("passes the audio through", () => {
|
|
return PassAudio((input) => {
|
|
const meter = new DCMeter().toDestination();
|
|
input.connect(meter);
|
|
});
|
|
});
|
|
|
|
it("can get the rms level of the incoming signal", (done) => {
|
|
const meter = new DCMeter();
|
|
const osc = new Signal(2).connect(meter);
|
|
setTimeout(() => {
|
|
expect(meter.getValue()).to.be.closeTo(2, 0.1);
|
|
meter.dispose();
|
|
osc.dispose();
|
|
done();
|
|
}, 400);
|
|
});
|
|
});
|
|
});
|