Skip to content

Commit

Permalink
Revert skipped tests
Browse files Browse the repository at this point in the history
  • Loading branch information
TrySound committed Aug 3, 2020
1 parent bf6d737 commit d68abfa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions test/e2e/router.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -175,13 +175,13 @@ describe('E2E router', () => {
expect(response.text).toBe('A');
});

it.skip('should proxy when host is "beta.localhost"', async () => {
it('should proxy when host is "beta.localhost"', async () => {
const response = await agent.get('/api').set('host', 'beta.localhost:6000').expect(200);

expect(response.text).toBe('B');
});

it.skip('should proxy with host & path config: "localhost:6000/api"', async () => {
it('should proxy with host & path config: "localhost:6000/api"', async () => {
const response = await agent.get('/api').set('host', 'localhost:6000').expect(200);

expect(response.text).toBe('C');
Expand Down
8 changes: 4 additions & 4 deletions test/e2e/websocket.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ describe('E2E WebSocket proxy', () => {
});
});

it.skip('should proxy to path', () => {
it('should proxy to path', () => {
expect(responseMessage).toBe('foobar');
});
});
Expand All @@ -84,7 +84,7 @@ describe('E2E WebSocket proxy', () => {
});
});

it.skip('should proxy to path', () => {
it('should proxy to path', () => {
expect(responseMessage).toBe('foobar');
});
});
Expand Down Expand Up @@ -117,7 +117,7 @@ describe('E2E WebSocket proxy', () => {
});
});

it.skip('should proxy to path', () => {
it('should proxy to path', () => {
expect(responseMessage).toBe('foobar');
});
});
Expand Down Expand Up @@ -151,7 +151,7 @@ describe('E2E WebSocket proxy', () => {
});
});

it.skip('should proxy to path', () => {
it('should proxy to path', () => {
expect(responseMessage).toBe('foobar');
});
});
Expand Down

0 comments on commit d68abfa

Please sign in to comment.