All files / src/utils addTrafficMonitoring.ts

100% Statements 5/5
100% Branches 0/0
100% Functions 3/3
100% Lines 5/5

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16  5x 5x     13x       6x       7x    
import packageJson from '../../package.json'
const INT_VERSION = packageJson.version
const PARAM_NAME = 'ii'
 
function getTrafficMonitoringValue(type: 'procdn' | 'ingress'): string {
  return `fingerprint-pro-fastly-compute/${INT_VERSION}/${type}`
}
 
export function addTrafficMonitoringSearchParamsForProCDN(url: URL) {
  url.searchParams.append(PARAM_NAME, getTrafficMonitoringValue('procdn'))
}
 
export function addTrafficMonitoringSearchParamsForVisitorIdRequest(url: URL) {
  url.searchParams.append(PARAM_NAME, getTrafficMonitoringValue('ingress'))
}