scratch-sb1-converter/test/integration/index.js

9 lines
137 B
JavaScript
Raw Normal View History

const test = require('tap').test;
const SB1 = require('../..');
test('loads package', t => {
t.type(SB1, Object);
t.end();
});