From d3d1c6c612cf6b5667ff3e2a72d502e457ea31e2 Mon Sep 17 00:00:00 2001 From: Chris Barber Date: Thu, 11 Jan 2024 10:41:33 -0600 Subject: [PATCH] Switch test to use github.com --- test/util/request.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/util/request.test.js b/test/util/request.test.js index f7fe7b54..096a40c8 100644 --- a/test/util/request.test.js +++ b/test/util/request.test.js @@ -18,7 +18,7 @@ describe('request', () => { }); it('should fetch TiDev page', async () => { - const res = await request('https://tidev.io'); + const res = await request('https://github.com'); await res.body.text(); assert.strictEqual(res.statusCode, 200); }); @@ -38,7 +38,7 @@ describe('request', () => { try { ticonfig.set('cli.httpProxyServer', 'http://localhost:9999'); - const res = await request('https://tidev.io'); + const res = await request('https://github.com'); await res.body.text(); assert.strictEqual(res.statusCode, 200); } finally {