mirror of
https://github.com/Tonejs/Tone.js
synced 2024-11-16 16:48:00 +00:00
22 lines
No EOL
442 B
JavaScript
22 lines
No EOL
442 B
JavaScript
define(["Test", "Tone/core/Tone"], function (Test, Tone) {
|
|
|
|
return function(Constr, args){
|
|
|
|
context("Basic", function(){
|
|
|
|
it ("can be created and disposed", function(){
|
|
var instance = new Constr(args);
|
|
instance.dispose();
|
|
Test.wasDisposed(instance);
|
|
});
|
|
|
|
it ("extends Tone", function(){
|
|
var instance = new Constr(args);
|
|
expect(instance).to.be.an.instanceof(Tone);
|
|
instance.dispose();
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
}); |