init source
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
/* eslint strict: 0, global-require: 0 */
|
||||
|
||||
'use strict';
|
||||
|
||||
const test = require('tape');
|
||||
|
||||
test('all entry points parse', (t) => {
|
||||
t.doesNotThrow(() => require('..'), 'index does not throw');
|
||||
t.doesNotThrow(() => require('../base'), 'base does not throw');
|
||||
t.doesNotThrow(() => require('../legacy'), 'legacy does not throw');
|
||||
t.doesNotThrow(() => require('../whitespace'), 'whitespace does not throw');
|
||||
t.doesNotThrow(() => require('../hooks'), 'hooks does not throw');
|
||||
|
||||
t.end();
|
||||
});
|
||||
Reference in New Issue
Block a user