mirror of
https://github.com/scratchfoundation/scratch-analysis.git
synced 2025-06-05 01:24:13 -04:00
8 lines
151 B
JavaScript
8 lines
151 B
JavaScript
|
const test = require('tap').test;
|
||
|
const analysis = require('../../lib/index');
|
||
|
|
||
|
test('spec', t => {
|
||
|
t.type(analysis, 'function');
|
||
|
t.end();
|
||
|
});
|