mirror of
https://github.com/scratchfoundation/scratch-analysis.git
synced 2024-12-01 03:46:50 -05:00
7 lines
151 B
JavaScript
7 lines
151 B
JavaScript
const test = require('tap').test;
|
|
const analysis = require('../../lib/index');
|
|
|
|
test('spec', t => {
|
|
t.type(analysis, 'function');
|
|
t.end();
|
|
});
|