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.
15 lines
494 B
15 lines
494 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('../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(); |
|
});
|
|
|