-
Notifications
You must be signed in to change notification settings - Fork 47.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add fiber test report
- Loading branch information
Brandon Dail
committed
Nov 28, 2016
1 parent
14dcb61
commit 996e59d
Showing
2 changed files
with
78 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
71 changes: 71 additions & 0 deletions
71
src/renderers/shared/utils/__tests__/ReactErrorUtils-test.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
/** | ||
* Copyright 2014-present, Facebook, Inc. | ||
* All rights reserved. | ||
* | ||
* This source code is licensed under the BSD-style license found in the | ||
* LICENSE file in the root directory of this source tree. An additional grant | ||
* of patent rights can be found in the PATENTS file in the same directory. | ||
* | ||
* @emails react-core | ||
*/ | ||
|
||
'use strict'; | ||
|
||
var ReactErrorUtils; | ||
|
||
describe('ReactErrorUtils', () => { | ||
|
||
beforeEach(() => { | ||
ReactErrorUtils = require('ReactErrorUtils'); | ||
}) | ||
|
||
describe('invokeGuardedCallbackWithCatch', () => { | ||
it('should call the callback with only the passed argument', () => { | ||
var callback = jest.fn(); | ||
ReactErrorUtils.invokeGuardedCallbackWithCatch('foo', callback, 'arg'); | ||
expect(callback).toBeCalledWith('arg'); | ||
}) | ||
|
||
it('should catch errors', () => { | ||
var callback = function() { | ||
throw new Error('foo'); | ||
}; | ||
expect( | ||
() => ReactErrorUtils.invokeGuardedCallbackWithCatch('foo', callback) | ||
).not.toThrow() | ||
}) | ||
}); | ||
|
||
describe('rethrowCaughtError', () => { | ||
it('should rethrow caught errors', () => { | ||
var err = new Error('foo'); | ||
var callback = function() { throw err }; | ||
ReactErrorUtils.invokeGuardedCallbackWithCatch('foo', callback); | ||
expect(() => ReactErrorUtils.rethrowCaughtError()).toThrow(err); | ||
}); | ||
}); | ||
|
||
describe('invokeGuardedCallback', () => { | ||
it('should call the callback with only the passed argument', () => { | ||
var callback = jest.fn(); | ||
ReactErrorUtils.invokeGuardedCallback('foo', callback, 'arg'); | ||
expect(callback).toBeCalledWith('arg'); | ||
}); | ||
|
||
it('should use invokeGuardedCallbackWithCatch in production', () => { | ||
expect(ReactErrorUtils.invokeGuardedCallback).not.toEqual( | ||
ReactErrorUtils.invokeGuardedCallbackWithCatch | ||
); | ||
__DEV__ = false; | ||
var oldProcess = process; | ||
global.process = {env: {NODE_ENV: 'production'}}; | ||
jest.resetModuleRegistry(); | ||
ReactErrorUtils = require('ReactErrorUtils'); | ||
expect(ReactErrorUtils.invokeGuardedCallback).toEqual( | ||
ReactErrorUtils.invokeGuardedCallbackWithCatch | ||
); | ||
__DEV__ = true; | ||
global.process = oldProcess; | ||
}); | ||
}); | ||
}); |