requires.js 358 B

12345678910111213
  1. /* eslint strict: 0, global-require: 0 */
  2. 'use strict';
  3. const test = require('tape');
  4. test('all entry points parse', (t) => {
  5. t.doesNotThrow(() => require('..'), 'index does not throw');
  6. t.doesNotThrow(() => require('../legacy'), 'legacy does not throw');
  7. t.doesNotThrow(() => require('../whitespace'), 'whitespace does not throw');
  8. t.end();
  9. });