intern.js 598 B

1234567891011121314151617
  1. (function (factory) {
  2. if (typeof module === 'object' && typeof module.exports === 'object') {
  3. var v = factory(require, exports); if (v !== undefined) module.exports = v;
  4. }
  5. else if (typeof define === 'function' && define.amd) {
  6. define(["require", "exports"], factory);
  7. }
  8. })(function (require, exports) {
  9. "use strict";
  10. exports.loaderOptions = {
  11. packages: [
  12. { name: 'dts-generator', location: '.' }
  13. ]
  14. };
  15. exports.suites = ['dts-generator/tests/unit/all'];
  16. exports.excludeInstrumentation = /^(?:tests|node_modules)\//;
  17. });