(url, referrerPolicy, attributionSrc)
| 381 | } |
| 382 | |
| 383 | verifyRequest(url, referrerPolicy, attributionSrc) { |
| 384 | const pixel = this.imagePixels_.shift(); |
| 385 | expect(pixel.src).to.equal(url); |
| 386 | expect(pixel.referrerPolicy).to.equal(referrerPolicy); |
| 387 | expect(pixel.attributionSrc).to.equal(attributionSrc); |
| 388 | } |
| 389 | |
| 390 | verifyRequestMatch(regex) { |
| 391 | const pixel = this.imagePixels_.shift(); |
no test coverage detected