diff --git a/tests/e2e/parallel/credential/issue-verify-flow.spec.ts b/tests/e2e/parallel/credential/issue-verify-flow.spec.ts index 654b89e5..f17c729e 100644 --- a/tests/e2e/parallel/credential/issue-verify-flow.spec.ts +++ b/tests/e2e/parallel/credential/issue-verify-flow.spec.ts @@ -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') ); @@ -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') ); diff --git a/tests/e2e/payloads/credential/credential-issue-jsonld-ed25519-2020.json b/tests/e2e/payloads/credential/credential-issue-jsonld-ed25519-2020.json index 2ee396f9..857220d6 100644 --- a/tests/e2e/payloads/credential/credential-issue-jsonld-ed25519-2020.json +++ b/tests/e2e/payloads/credential/credential-issue-jsonld-ed25519-2020.json @@ -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" }