Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions tests/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,9 @@ export const endpointCheck = ({endpoint, vcVersion, keyType}) => {
*/
export function filterVerifiers({implementation}) {
const endpoints = implementation.verifiers;
if(undefined === endpoints) {
return [];
}
// the filter function expects an array to be returned
return endpoints.filter(e => {
// we want only endpoints that match every tag
Expand Down
Loading