Fix doc generation for Geolocation
This commit is contained in:
parent
5225acea01
commit
8465859411
|
@ -0,0 +1,23 @@
|
|||
// This mock only provides short-circuited methods of applyWithGuard and guard.
|
||||
// A lot of modules rely on these two functions. This mock relieves their tests
|
||||
// from depending on the real ErrorUtils module. If you need real error handling
|
||||
// don't use this mock.
|
||||
'use strict';
|
||||
|
||||
function execute(fun, context, args) {
|
||||
return fun.apply(context, args);
|
||||
};
|
||||
|
||||
function reportError(error) {
|
||||
throw error;
|
||||
}
|
||||
|
||||
var ErrorUtils = {
|
||||
apply: jest.genMockFunction().mockImplementation(execute),
|
||||
applyWithGuard: jest.genMockFunction().mockImplementation(execute),
|
||||
inGuard: jest.genMockFunction().mockReturnValue(true),
|
||||
reportError: jest.genMockFunction().mockImplementation(reportError),
|
||||
setGlobalHandler: jest.genMockFunction(),
|
||||
};
|
||||
|
||||
module.exports = ErrorUtils;
|
|
@ -154,7 +154,7 @@ var styles = [
|
|||
];
|
||||
|
||||
var polyfills = [
|
||||
'../Libraries/GeoLocation/Geolocation.ios.js',
|
||||
'../Libraries/GeoLocation/Geolocation.js',
|
||||
];
|
||||
|
||||
var all = components
|
||||
|
|
Loading…
Reference in New Issue