lint
This commit is contained in:
parent
f0e54a4519
commit
c5aad394be
|
|
@ -46,7 +46,7 @@ import { GlobalAPIRequestContext } from '../fetch';
|
|||
import { MockingProxy } from '../mockingProxy';
|
||||
import { MockingProxyDispatcher } from './mockingProxyDispatcher';
|
||||
|
||||
export class LocalUtilsDispatcher extends Dispatcher<{ guid: string }, channels.LocalUtilsChannel, RootDispatcher> implements channels.LocalUtilsChannel {
|
||||
export class LocalUtilsDispatcher extends Dispatcher<SdkObject, channels.LocalUtilsChannel, RootDispatcher> implements channels.LocalUtilsChannel {
|
||||
_type_LocalUtils: boolean;
|
||||
private _harBackends = new Map<string, HarBackend>();
|
||||
private _stackSessions = new Map<string, {
|
||||
|
|
|
|||
|
|
@ -370,7 +370,7 @@ const playwrightFixtures: Fixtures<TestFixtures, WorkerFixtures> = ({
|
|||
}
|
||||
} : {};
|
||||
const context = await browser.newContext({ ...videoOptions, ...options });
|
||||
_mockingProxy?.installOn(context as any);
|
||||
_mockingProxy?.install(context as any);
|
||||
const contextData: { pagesWithVideo: Page[] } = { pagesWithVideo: [] };
|
||||
contexts.set(context, contextData);
|
||||
if (captureVideo)
|
||||
|
|
|
|||
|
|
@ -13,7 +13,7 @@
|
|||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
import type { APIRequestContext, MockingProxy, Route } from 'packages/playwright-test';
|
||||
import type { APIRequestContext, Route } from 'packages/playwright-test';
|
||||
import { playwrightTest as baseTest, expect } from '../config/browserTest';
|
||||
import { pipeline } from 'stream/promises';
|
||||
import { suppressCertificateWarning } from 'tests/config/utils';
|
||||
|
|
|
|||
Loading…
Reference in a new issue