Skip to content

Commit 6efee0c

Browse files
author
Sebastian Silbermann
committed
Ungate already passing tests
1 parent 637b7e3 commit 6efee0c

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5680,7 +5680,6 @@ describe('ReactDOMFizzServer', () => {
56805680
expect(getVisibleChildren(document.head)).toEqual(<title>4</title>);
56815681
});
56825682

5683-
// @gate enableBigIntSupport
56845683
it('should accept a single bigint child', async () => {
56855684
// a Single number child
56865685
function App() {

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -657,7 +657,6 @@ describe('ReactDOMInput', () => {
657657
expect(div.firstChild.getAttribute('defaultValue')).toBe(null);
658658
});
659659

660-
// @gate enableBigIntSupport
661660
it('should render bigint defaultValue for SSR', () => {
662661
const markup = ReactDOMServer.renderToString(
663662
<input type="text" defaultValue={5n} />,
@@ -677,7 +676,6 @@ describe('ReactDOMInput', () => {
677676
expect(div.firstChild.getAttribute('defaultValue')).toBe(null);
678677
});
679678

680-
// @gate enableBigIntSupport
681679
it('should render bigint value for SSR', () => {
682680
const element = <input type="text" value={5n} onChange={() => {}} />;
683681
const markup = ReactDOMServer.renderToString(element);

0 commit comments

Comments
 (0)