From 1ba0c8672460fa17ccb27ea2ab106c438b52a79e Mon Sep 17 00:00:00 2001 From: JJ Kasper Date: Thu, 9 Jan 2020 18:07:37 -0600 Subject: [PATCH] Remove colon test to make git on windows happy --- test/integration/dynamic-routing/public/hello:copy.txt | 1 - test/integration/dynamic-routing/test/index.test.js | 7 ------- 2 files changed, 8 deletions(-) delete mode 100644 test/integration/dynamic-routing/public/hello:copy.txt diff --git a/test/integration/dynamic-routing/public/hello:copy.txt b/test/integration/dynamic-routing/public/hello:copy.txt deleted file mode 100644 index 442ea9b9cdcea..0000000000000 --- a/test/integration/dynamic-routing/public/hello:copy.txt +++ /dev/null @@ -1 +0,0 @@ -hello world : \ No newline at end of file diff --git a/test/integration/dynamic-routing/test/index.test.js b/test/integration/dynamic-routing/test/index.test.js index f25d1e6344d86..643c6407b82a3 100644 --- a/test/integration/dynamic-routing/test/index.test.js +++ b/test/integration/dynamic-routing/test/index.test.js @@ -378,13 +378,6 @@ function runTests(dev) { expect(res.status).toBe(200) }) - it('should serve file with colon from public folder', async () => { - const res = await fetchViaHTTP(appPort, '/hello:copy.txt') - const text = (await res.text()).trim() - expect(text).toBe('hello world :') - expect(res.status).toBe(200) - }) - if (dev) { it('should work with HMR correctly', async () => { const browser = await webdriver(appPort, '/post-1/comments')