mirror of
https://github.com/scratchfoundation/scratch-sb1-converter.git
synced 2024-12-01 20:07:10 -05:00
12 lines
248 B
JavaScript
12 lines
248 B
JavaScript
|
const test = require('tap').test;
|
||
|
|
||
|
const SB1 = require('../..');
|
||
|
|
||
|
test('spec', t => {
|
||
|
t.type(SB1, Object);
|
||
|
t.type(SB1.SB1File, Function);
|
||
|
t.type(SB1.AssertionError, Function);
|
||
|
t.type(SB1.ValidationError, Function);
|
||
|
t.end();
|
||
|
});
|