"""Test `GET /supply-chains`.""" from tests.testutils.test_helpers import parse_json def test_get_supply_chains(client): """Test successful response for supply chain configuration schemas req.""" result = client.get('/supply-chains') assert result.status_code == 200 supply_chains = parse_json(result) assert len(supply_chains)