mirror of
https://github.com/scratchfoundation/scratch-sb1-converter.git
synced 2024-11-24 16:48:15 -05:00
11 lines
248 B
JavaScript
11 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();
|
|
});
|