diff --git a/packages/allure-codeceptjs/test/spec/runtime/legacy/links.test.ts b/packages/allure-codeceptjs/test/spec/runtime/legacy/links.test.ts index 64d1f5da6..417a36c6b 100644 --- a/packages/allure-codeceptjs/test/spec/runtime/legacy/links.test.ts +++ b/packages/allure-codeceptjs/test/spec/runtime/legacy/links.test.ts @@ -31,10 +31,10 @@ it("sets runtime links", async () => { testMode: true, enabled: true, links: { - ${LinkType.ISSUE}: { + issue: { urlTemplate: "https://example.org/issues/%s", }, - ${LinkType.TMS}: { + tms: { urlTemplate: "https://example.org/tasks/%s", } } diff --git a/packages/allure-codeceptjs/test/spec/runtime/modern/links.test.ts b/packages/allure-codeceptjs/test/spec/runtime/modern/links.test.ts index 6917c858f..8825fef2e 100644 --- a/packages/allure-codeceptjs/test/spec/runtime/modern/links.test.ts +++ b/packages/allure-codeceptjs/test/spec/runtime/modern/links.test.ts @@ -32,10 +32,10 @@ it("sets runtime links", async () => { testMode: true, enabled: true, links: { - ${LinkType.ISSUE}: { + issue: { urlTemplate: "https://example.org/issues/%s", }, - ${LinkType.TMS}: { + tms: { urlTemplate: "https://example.org/tasks/%s", } } diff --git a/packages/allure-playwright/test/spec/runtime/modern/links.spec.ts b/packages/allure-playwright/test/spec/runtime/modern/links.spec.ts index f6acdc6f6..2dee00bf7 100644 --- a/packages/allure-playwright/test/spec/runtime/modern/links.spec.ts +++ b/packages/allure-playwright/test/spec/runtime/modern/links.spec.ts @@ -27,10 +27,10 @@ it("sets runtime links", async () => { testMode: true, suiteTitle: true, links: { - ${LinkType.ISSUE}: { + issue: { urlTemplate: "https://example.org/issues/%s", }, - ${LinkType.TMS}: { + tms: { urlTemplate: "https://example.org/tasks/%s", } }