Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sync latest from Facebook #66

Merged
merged 25 commits into from
Jun 6, 2013
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
007b75f
Flatten Children A Single Level
jeffmo Jun 4, 2013
93fc188
style prop improvements
jeffmo Jun 4, 2013
4b81de9
use key="foo" for all components
jeffmo Jun 4, 2013
2593920
mapChildren
jeffmo Jun 4, 2013
54d3134
Add `ReactProps.func`
jeffmo Jun 4, 2013
b581c8c
Always reassign _key for every pass
jeffmo Jun 4, 2013
606d6b8
Revert `Object.create` in NormalizedEventListener
jeffmo Jun 4, 2013
3e211bf
[React] Removing invariant warning about updating owner state
jeffmo Jun 4, 2013
100af48
Support rendering different components into same node
jeffmo Jun 4, 2013
1457850
Rename `domUtils` to `dom`
jeffmo Jun 4, 2013
ca5d7bc
Add `getDefaultProps()`
jeffmo Jun 4, 2013
3ffbb4d
Re-add invariant
jeffmo Jun 4, 2013
bae6100
Make ReactIdentity-test less fragile with respect to root IDs.
jeffmo Jun 4, 2013
11a7cb5
Only Allow `forceUpdate` on Mounted Components
jeffmo Jun 4, 2013
a06de4b
Cleanup `ReactCurrentOwner` on Fatal
jeffmo Jun 4, 2013
9965b6b
Fix Listener Cleanup on Unmount
jeffmo Jun 4, 2013
0614d30
Move test utils internally, update for consistency
jeffmo Jun 4, 2013
9d1055b
Rename `ReactEvent` to `ReactEventEmitter`
jeffmo Jun 4, 2013
83101b8
Add license headers to new files
zpao Jun 4, 2013
fac24d4
React: Add @typechecks to `CallbackRegistry`
jeffmo Jun 5, 2013
153fd92
[React] Don't use autoMockOff
jeffmo Jun 5, 2013
36d8ce8
[React] remove deprecated Component.update()
jeffmo Jun 6, 2013
ba6fea1
Simplify Event Core
jeffmo Jun 6, 2013
88923f6
Improve Browser Support for `wheel` Event
jeffmo Jun 6, 2013
2dc24fc
Add typecheck, cleanup
jeffmo Jun 6, 2013
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
[React] Don't use autoMockOff
  • Loading branch information
jeffmo authored and zpao committed Jun 6, 2013
commit 153fd9246ed5baea0c2da006598667649249b1f2
2 changes: 1 addition & 1 deletion src/core/__tests__/ReactIdentity-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ var reactComponentExpect;
describe('ReactIdentity', function() {

beforeEach(function() {
require('mock-modules').autoMockOff().dumpCache();
require('mock-modules').dumpCache();
React = require('React');
ReactTestUtils = require('ReactTestUtils');
reactComponentExpect = require('reactComponentExpect');
Expand Down