tone
Version:
A Web Audio framework for making interactive music in the browser.
16 lines (12 loc) • 412 B
text/typescript
import { Compare, Plot } from "@tonejs/plot";
import { expect } from "chai";
import { BasicTests, testAudioContext } from "test/helper/Basic";
// import { atTime, Offline } from "test/helper/Offline";
import { TickParam } from "./TickParam";
describe("TickParam", () => {
// sanity checks
BasicTests(TickParam, {
context: testAudioContext,
param: testAudioContext.createOscillator().frequency,
});
});