You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
358 B
13 lines
358 B
/* 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('../legacy'), 'legacy does not throw');
|
|
t.doesNotThrow(() => require('../whitespace'), 'whitespace does not throw');
|
|
|
|
t.end();
|
|
});
|
|
|