fix: outdated import in harTracer

This commit is contained in:
alvaromartmart 2024-06-24 21:53:32 +02:00
parent 13ea32b1f2
commit c8d8cd0283

View file

@ -31,7 +31,7 @@ import { getPlaywrightVersion } from '../../utils/userAgent';
import { urlMatches } from '../../utils/network'; import { urlMatches } from '../../utils/network';
import { Frame } from '../frames'; import { Frame } from '../frames';
import type { HeadersArray, LifecycleEvent } from '../types'; import type { HeadersArray, LifecycleEvent } from '../types';
import { isTextualMimeType } from '../../utils/mimeType'; import { isTextualMimeType } from '../../utils/isomorphic/mimeType';
const FALLBACK_HTTP_VERSION = 'HTTP/1.1'; const FALLBACK_HTTP_VERSION = 'HTTP/1.1';
@ -680,4 +680,4 @@ function safeDateToISOString(value: string | number) {
} }
} }
const startedDateSymbol = Symbol('startedDate'); const startedDateSymbol = Symbol('startedDate');