Skip to content
Merged
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions packages/spacecat-shared-rum-api-client/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ import { fetch } from './utils.js';

const APIS = {
ROTATE_DOMAINKEYS: 'https://helix-pages.anywhere.run/helix-services/run-query@v3/rotate-domainkeys',
RUM_DASHBOARD_UI: 'https://main--franklin-dashboard--adobe.hlx.live/views/rum-dashboard',
NOT_FOUND_DASHBOARD_UI: 'https://main--franklin-dashboard--adobe.hlx.live/views/404-report',
RUM_DASHBOARD_UI: 'https://data.aem.live/rum-dashboard',
NOT_FOUND_DASHBOARD_UI: 'https://data.aem.live/404-reports',
RUM_DASHBOARD: 'https://helix-pages.anywhere.run/helix-services/run-query@v3/rum-dashboard',
DOMAIN_LIST: 'https://helix-pages.anywhere.run/helix-services/run-query@v3/dash/domain-list',
RUM_SOURCES: 'https://helix-pages.anywhere.run/helix-services/run-query@v3/rum-sources',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ describe('backlink creation', () => {

it('returns rum backlink when successful', async () => {
const client = RUMAPIClient.createFrom(context);
const expectedBacklink = 'https://main--franklin-dashboard--adobe.hlx.live/views/rum-dashboard?interval=7&offset=0&limit=100&url=www.space.cat&domainkey=scoped-domain-key';
const expectedBacklink = 'https://data.aem.live/rum-dashboard?interval=7&offset=0&limit=100&url=www.space.cat&domainkey=scoped-domain-key';

nock('https://helix-pages.anywhere.run')
.post('/helix-services/run-query@v3/rotate-domainkeys')
Expand All @@ -115,7 +115,7 @@ describe('backlink creation', () => {

it('returns 404 report backlink when successful', async () => {
const client = RUMAPIClient.createFrom(context);
const expectedBacklink = 'https://main--franklin-dashboard--adobe.hlx.live/views/404-report?interval=7&offset=0&limit=100&url=www.space.cat&domainkey=scoped-domain-key';
const expectedBacklink = 'https://data.aem.live/404-reports?interval=7&offset=0&limit=100&url=www.space.cat&domainkey=scoped-domain-key';

nock('https://helix-pages.anywhere.run')
.post('/helix-services/run-query@v3/rotate-domainkeys')
Expand Down