From 58a09a32067e7caa905ccacbceb8941d4748d098 Mon Sep 17 00:00:00 2001 From: Matt Carroll Date: Tue, 29 Apr 2025 15:04:24 -0700 Subject: [PATCH] unfocus test --- packages/react-dom/src/__tests__/ReactDOMForm-test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/react-dom/src/__tests__/ReactDOMForm-test.js b/packages/react-dom/src/__tests__/ReactDOMForm-test.js index f4a9355b10..66def5b685 100644 --- a/packages/react-dom/src/__tests__/ReactDOMForm-test.js +++ b/packages/react-dom/src/__tests__/ReactDOMForm-test.js @@ -1670,7 +1670,7 @@ describe('ReactDOMForm', () => { expect(divRef.current.textContent).toEqual('Current username: acdlite'); }); - it.only('multiple form submissions in rapid succession do not throw', async () => { + it('multiple form submissions in rapid succession do not throw', async () => { const submitFormTwiceButtonRef = React.createRef(); let actionCounter = 0; function App() { @@ -1685,7 +1685,7 @@ describe('ReactDOMForm', () => { // This is a userspace action. it must take a non-zero amount of time to // allow the form to be submitted again before the first one finishes. - // Otherwise, the form transitions will be batched and will not run concurrently. + // Otherwise, the form transitions will be batched and will not run sepereately. async function submitForm() { actionCounter++; return new Promise(res => setTimeout(res, 1));