You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* - \`all\` - Access all actions in the test environment.
1705
+
* - \`crypto_compare\` - Call CryptoCompare API.
1706
+
*/
1707
+
permissions: t.string,
1708
+
},
1709
+
}),
1710
+
response: {
1711
+
200: t.string
1712
+
},
1713
+
});
1714
+
`;
1715
+
1716
+
testCase('route with markdown list in comment',ROUTE_WITH_MARKDOWN_LIST,{
1717
+
openapi: '3.0.3',
1718
+
info: {
1719
+
title: 'Test',
1720
+
version: '1.0.0',
1721
+
},
1722
+
paths: {
1723
+
'/list': {
1724
+
get: {
1725
+
summary: 'A route with a list in the comment',
1726
+
operationId: 'api.v1.list',
1727
+
tags: ['Test Routes'],
1728
+
parameters: [
1729
+
{
1730
+
name: 'permissions',
1731
+
in: 'query',
1732
+
required: true,
1733
+
schema: {
1734
+
type: 'string',
1735
+
},
1736
+
description:
1737
+
'The permissions granted by this access token.\n\n- `all` - Access all actions in the test environment.\n- `crypto_compare` - Call CryptoCompare API.',
0 commit comments