From afb327ed66c644685c8d14dd457c4e1399813219 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philip=20J=C3=A4genstedt?= Date: Wed, 5 Feb 2020 17:21:18 +0100 Subject: [PATCH] Disable redirect test for lists.whatwg.org (#123) To be fixed in https://github.com/whatwg/misc-server/issues/75. --- test/certs.js | 2 +- test/cors.js | 2 +- test/redirects.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/certs.js b/test/certs.js index 4341ad0..e0de571 100644 --- a/test/certs.js +++ b/test/certs.js @@ -27,7 +27,7 @@ const DOMAINS = [ 'help.whatwg.org', 'html-differences.whatwg.org', 'html.spec.whatwg.org', - // 'lists.whatwg.org', + // 'lists.whatwg.org', // https://github.com/whatwg/misc-server/issues/75 'idea.whatwg.org', 'images.whatwg.org', 'infra.spec.whatwg.org', diff --git a/test/cors.js b/test/cors.js index b9b6245..8395f44 100644 --- a/test/cors.js +++ b/test/cors.js @@ -14,7 +14,7 @@ const CORS_TESTS = [ const NO_CORS_TESTS = [ // domains for which it's probably a mistake to have CORS headers 'https://blog.whatwg.org/', - //'https://lists.whatwg.org/', + //'https://lists.whatwg.org/', // https://github.com/whatwg/misc-server/issues/75 'https://participate.whatwg.org/', 'https://wiki.whatwg.org/', ]; diff --git a/test/redirects.js b/test/redirects.js index 55fceb6..a32cf31 100644 --- a/test/redirects.js +++ b/test/redirects.js @@ -33,7 +33,7 @@ const HTTP_TESTS = [ ['http://images.whatwg.org/', 301, 'https://images.whatwg.org/', 'keep'], ['http://infra.spec.whatwg.org/', 301, 'https://infra.spec.whatwg.org/', 'keep'], ['http://javascript.spec.whatwg.org/', 301, 'https://javascript.spec.whatwg.org/', 'keep'], - ['http://lists.whatwg.org/', 302, 'http://lists.whatwg.org/listinfo.cgi'], // TODO + // ['http://lists.whatwg.org/', 302, 'http://lists.whatwg.org/listinfo.cgi'], // https://github.com/whatwg/misc-server/issues/75 ['http://mediasession.spec.whatwg.org/', 301, 'https://mediasession.spec.whatwg.org/', 'keep'], ['http://mimesniff.spec.whatwg.org/', 301, 'https://mimesniff.spec.whatwg.org/', 'keep'], ['http://n.whatwg.org/', 301, 'https://n.whatwg.org/', 'keep'],