feat: normalize paths before comparison

This commit is contained in:
Julian Lam
2020-12-14 15:24:46 -05:00
parent dbe85630e3
commit df8d62ba06
2 changed files with 5 additions and 2 deletions

View File

@@ -187,7 +187,10 @@ describe('API', async () => {
return paths;
};
const paths = buildPaths(webserver.app._router.stack);
const paths = buildPaths(webserver.app._router.stack).map(function normalize(pathObj) {
pathObj.path = pathObj.path.replace(/\/:([^\\/]+)/g, '/{$1}');
return pathObj;
});
// For each express path, query for existence in read and write api schemas
paths.forEach((pathObj) => {