Skip to content

Commit 55c061c

Browse files
committed
mark invalid example.com test skipped
1 parent 3c90333 commit 55c061c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

run/markdown-preview/editor/test/app.test.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,9 @@ describe('Integration tests', () => {
5656
await request.get('/render').retry(3).expect(404);
5757
});
5858

59-
it('responds 200 OK on "POST /render" with valid JSON', async () => {
59+
// SKIP: this test is trying to call out to the RENDER_URL, which does not
60+
// accept POST requests. TODO: setup correct mocking/workaround.
61+
it.skip('responds 200 OK on "POST /render" with valid JSON', async () => {
6062
// A valid type will make a request to the /render endpoint.
6163
// TODO: This test outputs a JSON parsing SyntaxError from supertest but does not fail the assert.
6264
await request

0 commit comments

Comments
 (0)