Skip to content

Commit

Permalink
Debug jsonLD tests
Browse files Browse the repository at this point in the history
  • Loading branch information
DaevMithran committed Oct 16, 2024
1 parent abb06f7 commit f71b537
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/e2e/parallel/credential/issue-verify-flow.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ test(' Issue a jwt credential with a deactivated DID', async ({ request }) => {
expect(response.status()).toBe(StatusCodes.BAD_REQUEST);
});

test.skip(' Issue a jsonLD credential with Ed25519VerificationKey2018', async ({ request }) => {
test(' Issue a jsonLD credential with Ed25519VerificationKey2018', async ({ request }) => {
const credentialData = JSON.parse(
fs.readFileSync(`${PAYLOADS_PATH.CREDENTIAL}/credential-issue-jsonld-ed25519-2018.json`, 'utf-8')
);
Expand Down Expand Up @@ -98,7 +98,7 @@ test.skip(' Issue a jsonLD credential with Ed25519VerificationKey2018', async ({
expect(result.verified).toBe(true);
});

test.skip(' Issue a jsonLD credential with Ed25519VerificationKey2020', async ({ request }) => {
test(' Issue a jsonLD credential with Ed25519VerificationKey2020', async ({ request }) => {
const credentialData = JSON.parse(
fs.readFileSync(`${PAYLOADS_PATH.CREDENTIAL}/credential-issue-jsonld-ed25519-2020.json`, 'utf-8')
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"issuerDid": "did:cheqd:testnet:11ceabbd-1fdc-46c0-a15d-534c07926d2b",
"subjectDid": "did:key:z6MkqJNR1DHxX2qxqDYx9tNDsXoNRVpaVvJkLPeCYqaARz1n",
"attributes": {
"name": "Bob"
"nothing": "else matters"
},
"@context": ["https://www.w3.org/2018/credentials/v1"],
"@context": ["custom:example.context"],
"format": "jsonld"
}

0 comments on commit f71b537

Please sign in to comment.