We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c119e8e commit 17e8750Copy full SHA for 17e8750
backend/test_api.py
@@ -57,6 +57,12 @@ def test_storage_file_operations(self):
57
self.assertEqual(response.status_code, 200)
58
data = response.json()
59
self.assertIsInstance(data, (list, dict))
60
+
61
+ # Make sure directory shows up
62
+ response = requests.get(f"{self.base_url}/storage/")
63
+ self.assertEqual(response.status_code, 200)
64
+ data = response.json()
65
+ self.assertIsInstance(data, (list, dict))
66
67
def test_storage_rename_operation(self):
68
"""Test storage rename endpoint"""
0 commit comments