mirror of
https://github.com/Tonejs/Tone.js
synced 2024-12-29 04:53:10 +00:00
daf97ae603
used by TickSignal and TickSource
15 lines
412 B
TypeScript
15 lines
412 B
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,
|
|
});
|
|
|
|
});
|