From 02aa7b28da4a31fe51dff2ab25d7751c576a7d47 Mon Sep 17 00:00:00 2001 From: Joe Haddad Date: Tue, 19 Jan 2021 11:04:27 -0500 Subject: [PATCH] ci: stabilize Window CI (#21344) This skips a test suite that always flakes on Windows due to `http-proxy` <> Windows interop issues. --- test/integration/ssg-data-404/test/index.test.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/test/integration/ssg-data-404/test/index.test.js b/test/integration/ssg-data-404/test/index.test.js index 9ca78bb7fd..c1f437070e 100644 --- a/test/integration/ssg-data-404/test/index.test.js +++ b/test/integration/ssg-data-404/test/index.test.js @@ -48,6 +48,11 @@ const runTests = () => { } describe('SSG data 404', () => { + if (process.platform === 'win32') { + it('should skip this suite on Windows', () => {}) + return + } + describe('dev mode', () => { beforeAll(async () => { appPort = await findPort() -- GitLab