mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2025-06-12 05:21:15 -04:00
8 lines
184 B
JavaScript
8 lines
184 B
JavaScript
var test = require('tap').test;
|
|
var Primatives = require('../../src/engine/primatives');
|
|
|
|
test('spec', function (t) {
|
|
t.type(Primatives, 'function');
|
|
// @todo
|
|
t.end();
|
|
});
|