mirror of
https://github.com/Tonejs/Tone.js
synced 2025-01-15 13:23:58 +00:00
13 lines
353 B
TypeScript
13 lines
353 B
TypeScript
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,
|
|
});
|
|
|
|
});
|