removed /static test because it requires npm build

This commit is contained in:
Abubakar Abid 2021-11-02 15:08:50 -05:00
parent 75a12b1daa
commit 726870d3ab

View File

@ -68,10 +68,6 @@ class TestFlaskRoutes(unittest.TestCase):
response = self.client.get('/config/')
self.assertEqual(response.status_code, 200)
def test_get_static_route(self):
response = self.client.get('/static/bundle.css')
self.assertEqual(response.status_code, 200)
def test_enable_sharing_route(self):
path = "www.gradio.app"
response = self.client.get('/enable_sharing/www.gradio.app')