File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/react-dom/src/__tests__ Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1670,7 +1670,7 @@ describe('ReactDOMForm', () => {
1670
1670
expect ( divRef . current . textContent ) . toEqual ( 'Current username: acdlite' ) ;
1671
1671
} ) ;
1672
1672
1673
- it . only ( 'multiple form submissions in rapid succession do not throw' , async ( ) => {
1673
+ it ( 'multiple form submissions in rapid succession do not throw' , async ( ) => {
1674
1674
const submitFormTwiceButtonRef = React . createRef ( ) ;
1675
1675
let actionCounter = 0 ;
1676
1676
function App ( ) {
@@ -1685,7 +1685,7 @@ describe('ReactDOMForm', () => {
1685
1685
1686
1686
// This is a userspace action. it must take a non-zero amount of time to
1687
1687
// allow the form to be submitted again before the first one finishes.
1688
- // Otherwise, the form transitions will be batched and will not run concurrently .
1688
+ // Otherwise, the form transitions will be batched and will not run sepereately .
1689
1689
async function submitForm ( ) {
1690
1690
actionCounter ++ ;
1691
1691
return new Promise ( res => setTimeout ( res , 1 ) ) ;
You can’t perform that action at this time.
0 commit comments