Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Ungate already passing tests
  • Loading branch information
Sebastian Silbermann committed Feb 26, 2024
commit 111ff2844de4e8e22f9cea13140e9d1f076e0cdb
Original file line number Diff line number Diff line change
Expand Up @@ -5680,7 +5680,6 @@ describe('ReactDOMFizzServer', () => {
expect(getVisibleChildren(document.head)).toEqual(<title>4</title>);
});

// @gate enableBigIntSupport
it('should accept a single bigint child', async () => {
// a Single number child
function App() {
Expand Down
2 changes: 0 additions & 2 deletions packages/react-dom/src/__tests__/ReactDOMInput-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -657,7 +657,6 @@ describe('ReactDOMInput', () => {
expect(div.firstChild.getAttribute('defaultValue')).toBe(null);
});

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

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