main.js 669 B

123456789101112131415161718192021222324
  1. /* This Source Code Form is subject to the terms of the Mozilla Public
  2. * License, v. 2.0. If a copy of the MPL was not distributed with this
  3. * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
  4. 'use strict';
  5. module.metadata = {
  6. 'engines': {
  7. 'Firefox': '*'
  8. }
  9. };
  10. const { safeMerge: merge } = require('sdk/util/object');
  11. merge(module.exports,
  12. require('./tests/test-places-bookmarks'),
  13. require('./tests/test-places-events'),
  14. require('./tests/test-places-favicon'),
  15. require('./tests/test-places-history'),
  16. require('./tests/test-places-host'),
  17. require('./tests/test-places-utils')
  18. );
  19. require('sdk/test/runner').runTestsFromModule(module);