Skip to content

Commit

Permalink
fix(experimentation-ess): audit url calculating for rum bundler API (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
rpapani authored Sep 4, 2024
1 parent 293c778 commit 488a9a7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/experimentation-ess/all.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
/* c8 ignore start */
import { AuditBuilder } from '../common/audit-builder.js';
import { processAudit, postProcessor } from './common.js';
import { wwwUrlResolver } from '../common/audit.js';

const DAYS = 180;

Expand Down Expand Up @@ -79,6 +80,7 @@ export async function essExperimentationAllAuditRunner(auditUrl, context, site)

export default new AuditBuilder()
.withRunner(essExperimentationAllAuditRunner)
.withUrlResolver(wwwUrlResolver)
.withPostProcessors([postProcessor])
.withPersister(persistOnlyMetadata)
.withMessageSender(() => true)
Expand Down
2 changes: 2 additions & 0 deletions src/experimentation-ess/daily.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
/* c8 ignore start */
import { AuditBuilder } from '../common/audit-builder.js';
import { processAudit } from './common.js';
import { wwwUrlResolver } from '../common/audit.js';

const DAYS = 1;

Expand Down Expand Up @@ -44,5 +45,6 @@ export async function essExperimentationDailyAuditRunner(auditUrl, context, site

export default new AuditBuilder()
.withRunner(essExperimentationDailyAuditRunner)
.withUrlResolver(wwwUrlResolver)
.build();
/* c8 ignore stop */

0 comments on commit 488a9a7

Please sign in to comment.