Skip to content

Commit 47ef74f

Browse files
unfocus test
1 parent be58f26 commit 47ef74f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/react-dom/src/__tests__/ReactDOMForm-test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1670,7 +1670,7 @@ describe('ReactDOMForm', () => {
16701670
expect(divRef.current.textContent).toEqual('Current username: acdlite');
16711671
});
16721672

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 () => {
16741674
const submitFormTwiceButtonRef = React.createRef();
16751675
let actionCounter = 0;
16761676
function App() {
@@ -1685,7 +1685,7 @@ describe('ReactDOMForm', () => {
16851685

16861686
// This is a userspace action. it must take a non-zero amount of time to
16871687
// 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.
16891689
async function submitForm() {
16901690
actionCounter++;
16911691
return new Promise(res => setTimeout(res, 1));

0 commit comments

Comments
 (0)