Skip to content

Commit

Permalink
Re-enable InspectorProxy* Jest tests (#42682)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: #42682

Since D53125777, these should be safe to re-enable

Changelog:
[Internal] Re-enable dev-middleware InspectorProxy* tests

Reviewed By: huntie

Differential Revision: D53125778

fbshipit-source-id: 38911b5d6f424b46d33bb4dace18c892dc5c8c1a
  • Loading branch information
robhogan authored and facebook-github-bot committed Jan 27, 2024
1 parent 2055ca0 commit cfc0ba0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,7 @@ beforeAll(() => {
jest.resetModules();
});

// TODO T169943794
xdescribe.each(['HTTP', 'HTTPS'])(
describe.each(['HTTP', 'HTTPS'])(
'inspector proxy CDP rewriting hacks over %s',
protocol => {
const serverRef = withServerForEachTest({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ jest.useRealTimers();

jest.setTimeout(10000);

// TODO T169943794
xdescribe.each(['HTTP', 'HTTPS'])(
describe.each(['HTTP', 'HTTPS'])(
'inspector proxy CDP transport over %s',
protocol => {
const serverRef = withServerForEachTest({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ const PAGES_POLLING_DELAY = 1000;

jest.useFakeTimers();

// TODO T169943794
xdescribe('inspector proxy HTTP API', () => {
describe('inspector proxy HTTP API', () => {
const serverRef = withServerForEachTest({
logger: undefined,
projectRoot: '',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ jest.useRealTimers();

jest.setTimeout(10000);

// TODO T169943794
xdescribe('inspector proxy React Native reloads', () => {
describe('inspector proxy React Native reloads', () => {
const serverRef = withServerForEachTest({
logger: undefined,
projectRoot: '',
Expand Down

0 comments on commit cfc0ba0

Please sign in to comment.