mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
Fixing typo in ReactDOMComponent test name (#10132)
This commit is contained in:
committed by
Nathan Hunzaker
parent
242929bac1
commit
5bc25cb186
@@ -763,7 +763,7 @@ src/renderers/dom/shared/__tests__/ReactDOMComponent-test.js
|
||||
* should handle className
|
||||
* should gracefully handle various style value types
|
||||
* should not update styles when mutating a proxy style object
|
||||
* should throw when mutating style objectsd
|
||||
* should throw when mutating style objects
|
||||
* should warn for unknown prop
|
||||
* should group multiple unknown prop warnings together
|
||||
* should warn for onDblClick prop
|
||||
|
||||
@@ -126,7 +126,7 @@ describe('ReactDOMComponent', () => {
|
||||
expect(stubStyle.lineHeight).toBe('');
|
||||
});
|
||||
|
||||
it('should throw when mutating style objectsd', () => {
|
||||
it('should throw when mutating style objects', () => {
|
||||
var style = {border: '1px solid black'};
|
||||
|
||||
class App extends React.Component {
|
||||
|
||||
Reference in New Issue
Block a user