mirror of
https://github.com/Tonejs/Tone.js
synced 2024-12-26 11:33:09 +00:00
2ff888d3b3
and basic sanity check
30 lines
694 B
TypeScript
30 lines
694 B
TypeScript
import { expect } from "chai";
|
|
import { OfflineContext } from "./core/context/OfflineContext";
|
|
import { fromContext } from "./fromContext";
|
|
|
|
describe("fromContext", () => {
|
|
|
|
let context: OfflineContext;
|
|
|
|
before(() => {
|
|
context = new OfflineContext(1, 1, 44100);
|
|
context.initialize();
|
|
});
|
|
|
|
after(() => {
|
|
context.dispose();
|
|
});
|
|
|
|
it ("creates an object from a context", () => {
|
|
const tone = fromContext(context);
|
|
const osc = new tone.Oscillator();
|
|
expect(osc.context).to.equal(context);
|
|
osc.dispose();
|
|
});
|
|
|
|
it ("units are relative to the passed in context's timing", () => {
|
|
const tone = fromContext(context);
|
|
expect(tone.Time("+0.5").valueOf()).to.equal(0.5);
|
|
});
|
|
|
|
});
|