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.
37 lines
985 B
37 lines
985 B
define([], function() {
|
|
|
|
|
|
return {
|
|
hooks: {
|
|
beforeSetup: function() {
|
|
window.$C = {};
|
|
},
|
|
|
|
beforeEachAppLoad: function(app) {
|
|
},
|
|
|
|
afterEachAppLoad: function(app) {
|
|
},
|
|
|
|
beforeEachApp: function(app) {
|
|
}
|
|
},
|
|
|
|
testHelpers: function() {
|
|
return {
|
|
mockModuleLocationsGen: function mockModules(list_of_module_locations, mock_location) {
|
|
//webpack transforms calls to this helper at define-time (for .js test files)
|
|
throw new Error('Calling mockModuleLocationsGen at runtime or from ES6 files is unsupported');
|
|
}
|
|
};
|
|
},
|
|
|
|
moduleIsolatorBlacklist: function() {
|
|
return [
|
|
// document.registerElement doesn't support multiple calls
|
|
/webcomponents\/forminputs\/Splunk.*/
|
|
];
|
|
}
|
|
};
|
|
});
|