mirror of
https://github.com/Tonejs/Tone.js
synced 2024-12-26 03:23:11 +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
53 lines
1.8 KiB
TypeScript
53 lines
1.8 KiB
TypeScript
import * as Tone from "./index.js";
|
|
import { expect } from "chai";
|
|
import { DestinationClass } from "./core/context/Destination.js";
|
|
import { Context } from "./core/context/Context.js";
|
|
import { TransportClass } from "./core/clock/Transport.js";
|
|
import { DrawClass } from "./core/util/Draw.js";
|
|
|
|
describe("Tone", () => {
|
|
it("has 'now' and 'immediate' methods", () => {
|
|
expect(Tone.now).to.be.a("function");
|
|
expect(Tone.now()).to.be.a("number");
|
|
expect(Tone.immediate).to.be.a("function");
|
|
expect(Tone.immediate()).to.be.a("number");
|
|
});
|
|
|
|
it("exports the global singletons", () => {
|
|
expect(Tone.Destination).to.be.an.instanceOf(DestinationClass);
|
|
expect(Tone.Draw).to.be.an.instanceOf(DrawClass);
|
|
expect(Tone.Transport).to.be.an.instanceOf(TransportClass);
|
|
expect(Tone.context).to.be.an.instanceOf(Context);
|
|
});
|
|
|
|
it("exports the global singleton getters", () => {
|
|
expect(Tone.getDestination()).to.be.an.instanceOf(DestinationClass);
|
|
expect(Tone.getDraw()).to.be.an.instanceOf(DrawClass);
|
|
expect(Tone.getTransport()).to.be.an.instanceOf(TransportClass);
|
|
});
|
|
|
|
it("can start the global context", () => {
|
|
return Tone.start();
|
|
});
|
|
|
|
it("resolves the promise when everything is loaded", () => {
|
|
return Tone.loaded();
|
|
});
|
|
|
|
it("can set the global context from a raw online context", async () => {
|
|
const ctx = new AudioContext();
|
|
const origContext = Tone.getContext();
|
|
Tone.setContext(ctx);
|
|
expect(Tone.getContext().rawContext).to.equal(ctx);
|
|
await ctx.close();
|
|
Tone.setContext(origContext);
|
|
});
|
|
|
|
it("can set the global context from a raw offline context", async () => {
|
|
const ctx = new OfflineAudioContext(2, 44100, 44100);
|
|
const origContext = Tone.getContext();
|
|
Tone.setContext(ctx);
|
|
expect(Tone.getContext().rawContext).to.equal(ctx);
|
|
Tone.setContext(origContext);
|
|
});
|
|
});
|