Skip to content

Commit

Permalink
fix: ipfs config in claims test
Browse files Browse the repository at this point in the history
  • Loading branch information
JGiter committed Jun 20, 2023
1 parent 2ee3638 commit 138e671
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions e2e/claims.service.e2e.ts
Expand Up @@ -356,9 +356,11 @@ describe('Сlaim tests', () => {
});

cluster = await spawnIpfsCluster();
({ didRegistry, claimsService } = await connectToDidRegistry(
'http://localhost:8080'
));
({ didRegistry, claimsService } = await connectToDidRegistry({
protocol: 'http',
host: 'localhost',
port: '8080',
}));
mockGetAllowedRoles.mockImplementation(async (issuer) => {
const roleDefs = Object.values(roles);
const isRoleIssuerOfRole = await Promise.all(
Expand Down

0 comments on commit 138e671

Please sign in to comment.