mirror of
https://github.com/scratchfoundation/scratch-sb1-converter.git
synced 2024-11-30 19:37:32 -05:00
8 lines
137 B
JavaScript
8 lines
137 B
JavaScript
const test = require('tap').test;
|
|
|
|
const SB1 = require('../..');
|
|
|
|
test('loads package', t => {
|
|
t.type(SB1, Object);
|
|
t.end();
|
|
});
|