src/experiments/ab-tests.ts (5 lines of code) (raw):

import type { ABTest } from '@guardian/ab-core'; import { a9BidResponseWinner } from './tests/a9-bid-response-winner'; /** * You only need to add tests to this file if the code you are testing is here in * the commercial code. Any test here also needs to be in both DCR and Frontend, * but any tests in DCR and Frontend do not need to necessarily be added here. */ export const concurrentTests: ABTest[] = [ // one test per line a9BidResponseWinner, ];