mirror of
https://github.com/Tonejs/Tone.js
synced 2025-01-13 20:39:06 +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
59 lines
1.5 KiB
TypeScript
59 lines
1.5 KiB
TypeScript
import { BitCrusher } from "./BitCrusher.js";
|
|
import { FeedbackCombFilter } from "../component/filter/FeedbackCombFilter.js";
|
|
import { Oscillator } from "../source/oscillator/Oscillator.js";
|
|
import { BasicTests } from "../../test/helper/Basic.js";
|
|
import { EffectTests } from "../../test/helper/EffectTests.js";
|
|
import { CompareToFile } from "../../test/helper/CompareToFile.js";
|
|
import { expect } from "chai";
|
|
|
|
describe("BitCrusher", () => {
|
|
BasicTests(BitCrusher);
|
|
EffectTests(BitCrusher);
|
|
|
|
context("API", () => {
|
|
it("matches a file", () => {
|
|
return CompareToFile(
|
|
() => {
|
|
const crusher = new BitCrusher({ bits: 4 }).toDestination();
|
|
const osc = new Oscillator(110).connect(crusher);
|
|
osc.start(0);
|
|
},
|
|
"bitCrusher.wav",
|
|
0.01
|
|
);
|
|
});
|
|
|
|
it("can pass in options in the constructor", () => {
|
|
const crusher = new BitCrusher({
|
|
bits: 3,
|
|
});
|
|
expect(crusher.bits.value).to.equal(3);
|
|
crusher.dispose();
|
|
});
|
|
|
|
it("can get/set the options", () => {
|
|
const crusher = new BitCrusher(4);
|
|
expect(crusher.bits.value).to.equal(4);
|
|
crusher.set({
|
|
bits: 5,
|
|
});
|
|
expect(crusher.get().bits).to.equal(5);
|
|
crusher.dispose();
|
|
});
|
|
});
|
|
|
|
it("should be usable with the FeedbackCombFilter", (done) => {
|
|
new BitCrusher(4);
|
|
new FeedbackCombFilter();
|
|
|
|
const handle = setTimeout(() => {
|
|
window.onunhandledrejection = null;
|
|
done();
|
|
}, 100);
|
|
|
|
window.onunhandledrejection = (event) => {
|
|
done(event.reason);
|
|
clearTimeout(handle);
|
|
};
|
|
});
|
|
});
|