fxa-relier-client/tests/intern.js

28 строки
950 B
JavaScript

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
// Learn more about configuring this file at <https://github.com/theintern/intern/wiki/Configuring-Intern>.
// These default settings work OK for most people. The options that *must* be changed below are the
// packages, suites, excludeInstrumentation, and (if you want functional tests) functionalSuites.
define(['intern/lib/args'], function (args) {
return {
loader: {
// Packages that should be registered with the loader in each testing environment
packages: [ { name: 'fxa-relier-client', location: 'client' } ],
map: {
'*': {
'p-promise': 'components/p-promise/p'
}
}
},
suites: [ 'tests/test_list' ],
functionalSuites: [ ],
excludeInstrumentation: /./
};
});