mirror of
https://github.com/scratchfoundation/scratch-sb1-converter.git
synced 2025-06-27 05:30:35 -04:00
9 lines
137 B
JavaScript
9 lines
137 B
JavaScript
|
const test = require('tap').test;
|
||
|
|
||
|
const SB1 = require('../..');
|
||
|
|
||
|
test('loads package', t => {
|
||
|
t.type(SB1, Object);
|
||
|
t.end();
|
||
|
});
|