租房小程序前端代码
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

2 months ago
  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. });