fix: support even older node 12 (#9718)
This commit is contained in:
parent
193c79a685
commit
f2888395a6
1
.github/workflows/tests_secondary.yml
vendored
1
.github/workflows/tests_secondary.yml
vendored
|
|
@ -115,6 +115,7 @@ jobs:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
node_version:
|
node_version:
|
||||||
|
- "12.0.0"
|
||||||
- "^12.0.0"
|
- "^12.0.0"
|
||||||
- "^14.1.0" # pre 14.1, zip extraction was broken (https://github.com/microsoft/playwright/issues/1988)
|
- "^14.1.0" # pre 14.1, zip extraction was broken (https://github.com/microsoft/playwright/issues/1988)
|
||||||
- "^16.0.0"
|
- "^16.0.0"
|
||||||
|
|
|
||||||
|
|
@ -31,7 +31,7 @@ try {
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log(`Downloading browsers...`);
|
console.log(`Downloading browsers...`);
|
||||||
const { installDefaultBrowsersForNpmInstall } = require('playwright-core/src/utils/registry');
|
const { installDefaultBrowsersForNpmInstall } = require('playwright-core/lib/utils/registry');
|
||||||
installDefaultBrowsersForNpmInstall().catch(e => {
|
installDefaultBrowsersForNpmInstall().catch(e => {
|
||||||
console.error(`Failed to install browsers, caused by\n${e.stack}`);
|
console.error(`Failed to install browsers, caused by\n${e.stack}`);
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
|
|
|
||||||
|
|
@ -14,6 +14,6 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const { installBrowsersForNpmInstall } = require('playwright-core/src/utils/registry');
|
const { installBrowsersForNpmInstall } = require('playwright-core/lib/utils/registry');
|
||||||
|
|
||||||
installBrowsersForNpmInstall(['chromium', 'ffmpeg']);
|
installBrowsersForNpmInstall(['chromium', 'ffmpeg']);
|
||||||
|
|
|
||||||
|
|
@ -20,15 +20,15 @@
|
||||||
"require": "./index.js"
|
"require": "./index.js"
|
||||||
},
|
},
|
||||||
"./cli": "./cli.js",
|
"./cli": "./cli.js",
|
||||||
"./src/grid/gridServer": "./lib/grid/gridServer.js",
|
"./lib/grid/gridServer": "./lib/grid/gridServer.js",
|
||||||
"./src/grid/gridClient": "./lib/grid/gridClient.js",
|
"./lib/grid/gridClient": "./lib/grid/gridClient.js",
|
||||||
"./src/grid/dockerGridFactory": "./lib/grid/dockerGridFactory.js",
|
"./lib/grid/dockerGridFactory": "./lib/grid/dockerGridFactory.js",
|
||||||
"./src/utils/async": "./lib/utils/async.js",
|
"./lib/utils/async": "./lib/utils/async.js",
|
||||||
"./src/utils/httpServer": "./lib/utils/httpServer.js",
|
"./lib/utils/httpServer": "./lib/utils/httpServer.js",
|
||||||
"./src/utils/multimap": "./lib/utils/multimap.js",
|
"./lib/utils/multimap": "./lib/utils/multimap.js",
|
||||||
"./src/utils/processLauncher": "./lib/utils/processLauncher.js",
|
"./lib/utils/processLauncher": "./lib/utils/processLauncher.js",
|
||||||
"./src/utils/registry": "./lib/utils/registry.js",
|
"./lib/utils/registry": "./lib/utils/registry.js",
|
||||||
"./src/utils/utils": "./lib/utils/utils.js"
|
"./lib/utils/utils": "./lib/utils/utils.js"
|
||||||
},
|
},
|
||||||
"types": "types/types.d.ts",
|
"types": "types/types.d.ts",
|
||||||
"bin": {
|
"bin": {
|
||||||
|
|
|
||||||
|
|
@ -14,6 +14,6 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const { installBrowsersForNpmInstall } = require('playwright-core/src/utils/registry');
|
const { installBrowsersForNpmInstall } = require('playwright-core/lib/utils/registry');
|
||||||
|
|
||||||
installBrowsersForNpmInstall(['firefox']);
|
installBrowsersForNpmInstall(['firefox']);
|
||||||
|
|
|
||||||
|
|
@ -25,9 +25,9 @@ import { stopProfiling, startProfiling } from './profiler';
|
||||||
import { FilePatternFilter } from './util';
|
import { FilePatternFilter } from './util';
|
||||||
import { Loader } from './loader';
|
import { Loader } from './loader';
|
||||||
import { showHTMLReport } from './reporters/html';
|
import { showHTMLReport } from './reporters/html';
|
||||||
import { GridServer } from 'playwright-core/src/grid/gridServer';
|
import { GridServer } from 'playwright-core/lib/grid/gridServer';
|
||||||
import dockerFactory from 'playwright-core/src/grid/dockerGridFactory';
|
import dockerFactory from 'playwright-core/lib/grid/dockerGridFactory';
|
||||||
import { createGuid } from 'playwright-core/src/utils/utils';
|
import { createGuid } from 'playwright-core/lib/utils/utils';
|
||||||
|
|
||||||
const defaultTimeout = 30000;
|
const defaultTimeout = 30000;
|
||||||
const defaultReporter: BuiltInReporter = process.env.CI ? 'dot' : 'list';
|
const defaultReporter: BuiltInReporter = process.env.CI ? 'dot' : 'list';
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@ import { RunPayload, TestBeginPayload, TestEndPayload, DonePayload, TestOutputPa
|
||||||
import type { TestResult, Reporter, TestStep } from '../types/testReporter';
|
import type { TestResult, Reporter, TestStep } from '../types/testReporter';
|
||||||
import { Suite, TestCase } from './test';
|
import { Suite, TestCase } from './test';
|
||||||
import { Loader } from './loader';
|
import { Loader } from './loader';
|
||||||
import { ManualPromise } from 'playwright-core/src/utils/async';
|
import { ManualPromise } from 'playwright-core/lib/utils/async';
|
||||||
|
|
||||||
export type TestGroup = {
|
export type TestGroup = {
|
||||||
workerHash: string;
|
workerHash: string;
|
||||||
|
|
|
||||||
|
|
@ -19,8 +19,8 @@ import * as path from 'path';
|
||||||
import type { LaunchOptions, BrowserContextOptions, Page, BrowserContext, BrowserType } from 'playwright-core';
|
import type { LaunchOptions, BrowserContextOptions, Page, BrowserContext, BrowserType } from 'playwright-core';
|
||||||
import type { TestType, PlaywrightTestArgs, PlaywrightTestOptions, PlaywrightWorkerArgs, PlaywrightWorkerOptions, TestInfo } from '../types/test';
|
import type { TestType, PlaywrightTestArgs, PlaywrightTestOptions, PlaywrightWorkerArgs, PlaywrightWorkerOptions, TestInfo } from '../types/test';
|
||||||
import { rootTestType } from './testType';
|
import { rootTestType } from './testType';
|
||||||
import { assert, createGuid, removeFolders } from 'playwright-core/src/utils/utils';
|
import { assert, createGuid, removeFolders } from 'playwright-core/lib/utils/utils';
|
||||||
import { GridClient } from 'playwright-core/src/grid/gridClient';
|
import { GridClient } from 'playwright-core/lib/grid/gridClient';
|
||||||
import { Browser } from 'playwright-core';
|
import { Browser } from 'playwright-core';
|
||||||
export { expect } from './expect';
|
export { expect } from './expect';
|
||||||
export const _baseTest: TestType<{}, {}> = rootTestType.test;
|
export const _baseTest: TestType<{}, {}> = rootTestType.test;
|
||||||
|
|
|
||||||
|
|
@ -26,7 +26,7 @@ import * as fs from 'fs';
|
||||||
import { ProjectImpl } from './project';
|
import { ProjectImpl } from './project';
|
||||||
import { Reporter } from '../types/testReporter';
|
import { Reporter } from '../types/testReporter';
|
||||||
import { BuiltInReporter, builtInReporters } from './runner';
|
import { BuiltInReporter, builtInReporters } from './runner';
|
||||||
import { isRegExp } from 'playwright-core/src/utils/utils';
|
import { isRegExp } from 'playwright-core/lib/utils/utils';
|
||||||
|
|
||||||
export class Loader {
|
export class Loader {
|
||||||
private _defaultConfig: Config;
|
private _defaultConfig: Config;
|
||||||
|
|
|
||||||
|
|
@ -15,8 +15,8 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import { Locator, Page } from 'playwright-core';
|
import { Locator, Page } from 'playwright-core';
|
||||||
import { FrameExpectOptions } from 'playwright-core/src/client/types';
|
import { FrameExpectOptions } from 'playwright-core/lib/client/types';
|
||||||
import { constructURLBasedOnBaseURL } from 'playwright-core/src/utils/utils';
|
import { constructURLBasedOnBaseURL } from 'playwright-core/lib/utils/utils';
|
||||||
import type { Expect } from '../types';
|
import type { Expect } from '../types';
|
||||||
import { toBeTruthy } from './toBeTruthy';
|
import { toBeTruthy } from './toBeTruthy';
|
||||||
import { toEqual } from './toEqual';
|
import { toEqual } from './toEqual';
|
||||||
|
|
|
||||||
|
|
@ -16,8 +16,8 @@
|
||||||
|
|
||||||
|
|
||||||
import colors from 'colors/safe';
|
import colors from 'colors/safe';
|
||||||
import { ExpectedTextValue } from 'playwright-core/src/protocol/channels';
|
import { ExpectedTextValue } from 'playwright-core/lib/protocol/channels';
|
||||||
import { isRegExp, isString } from 'playwright-core/src/utils/utils';
|
import { isRegExp, isString } from 'playwright-core/lib/utils/utils';
|
||||||
import { currentTestInfo } from '../globals';
|
import { currentTestInfo } from '../globals';
|
||||||
import type { Expect } from '../types';
|
import type { Expect } from '../types';
|
||||||
import { expectType } from '../util';
|
import { expectType } from '../util';
|
||||||
|
|
|
||||||
|
|
@ -19,8 +19,8 @@ import fs from 'fs';
|
||||||
import open from 'open';
|
import open from 'open';
|
||||||
import path from 'path';
|
import path from 'path';
|
||||||
import { FullConfig, Suite } from '../../types/testReporter';
|
import { FullConfig, Suite } from '../../types/testReporter';
|
||||||
import { HttpServer } from 'playwright-core/src/utils/httpServer';
|
import { HttpServer } from 'playwright-core/lib/utils/httpServer';
|
||||||
import { calculateSha1, removeFolders } from 'playwright-core/src/utils/utils';
|
import { calculateSha1, removeFolders } from 'playwright-core/lib/utils/utils';
|
||||||
import RawReporter, { JsonReport, JsonSuite, JsonTestCase, JsonTestResult, JsonTestStep, JsonAttachment } from './raw';
|
import RawReporter, { JsonReport, JsonSuite, JsonTestCase, JsonTestResult, JsonTestStep, JsonAttachment } from './raw';
|
||||||
import assert from 'assert';
|
import assert from 'assert';
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -17,11 +17,11 @@
|
||||||
import fs from 'fs';
|
import fs from 'fs';
|
||||||
import path from 'path';
|
import path from 'path';
|
||||||
import { FullConfig, Location, Suite, TestCase, TestResult, TestStatus, TestStep } from '../../types/testReporter';
|
import { FullConfig, Location, Suite, TestCase, TestResult, TestStatus, TestStep } from '../../types/testReporter';
|
||||||
import { assert, calculateSha1 } from 'playwright-core/src/utils/utils';
|
import { assert, calculateSha1 } from 'playwright-core/lib/utils/utils';
|
||||||
import { sanitizeForFilePath } from '../util';
|
import { sanitizeForFilePath } from '../util';
|
||||||
import { formatResultFailure } from './base';
|
import { formatResultFailure } from './base';
|
||||||
import { toPosixPath, serializePatterns } from './json';
|
import { toPosixPath, serializePatterns } from './json';
|
||||||
import { MultiMap } from 'playwright-core/src/utils/multimap';
|
import { MultiMap } from 'playwright-core/lib/utils/multimap';
|
||||||
import { codeFrameColumns } from '@babel/code-frame';
|
import { codeFrameColumns } from '@babel/code-frame';
|
||||||
|
|
||||||
export type JsonLocation = Location;
|
export type JsonLocation = Location;
|
||||||
|
|
|
||||||
|
|
@ -38,7 +38,7 @@ import { ProjectImpl } from './project';
|
||||||
import { Minimatch } from 'minimatch';
|
import { Minimatch } from 'minimatch';
|
||||||
import { FullConfig } from './types';
|
import { FullConfig } from './types';
|
||||||
import { WebServer } from './webServer';
|
import { WebServer } from './webServer';
|
||||||
import { raceAgainstDeadline } from 'playwright-core/src/utils/async';
|
import { raceAgainstDeadline } from 'playwright-core/lib/utils/async';
|
||||||
|
|
||||||
const removeFolderAsync = promisify(rimraf);
|
const removeFolderAsync = promisify(rimraf);
|
||||||
const readDirAsync = promisify(fs.readdir);
|
const readDirAsync = promisify(fs.readdir);
|
||||||
|
|
|
||||||
|
|
@ -20,7 +20,7 @@ import url from 'url';
|
||||||
import type { TestError, Location } from './types';
|
import type { TestError, Location } from './types';
|
||||||
import { default as minimatch } from 'minimatch';
|
import { default as minimatch } from 'minimatch';
|
||||||
import debug from 'debug';
|
import debug from 'debug';
|
||||||
import { isRegExp } from 'playwright-core/src/utils/utils';
|
import { isRegExp } from 'playwright-core/lib/utils/utils';
|
||||||
|
|
||||||
export function serializeError(error: Error | any): TestError {
|
export function serializeError(error: Error | any): TestError {
|
||||||
if (error instanceof Error) {
|
if (error instanceof Error) {
|
||||||
|
|
|
||||||
|
|
@ -18,9 +18,9 @@ import net from 'net';
|
||||||
import os from 'os';
|
import os from 'os';
|
||||||
import stream from 'stream';
|
import stream from 'stream';
|
||||||
import { monotonicTime } from './util';
|
import { monotonicTime } from './util';
|
||||||
import { raceAgainstDeadline } from 'playwright-core/src/utils/async';
|
import { raceAgainstDeadline } from 'playwright-core/lib/utils/async';
|
||||||
import { WebServerConfig } from './types';
|
import { WebServerConfig } from './types';
|
||||||
import { launchProcess } from 'playwright-core/src/utils/processLauncher';
|
import { launchProcess } from 'playwright-core/lib/utils/processLauncher';
|
||||||
|
|
||||||
const DEFAULT_ENVIRONMENT_VARIABLES = {
|
const DEFAULT_ENVIRONMENT_VARIABLES = {
|
||||||
'BROWSER': 'none', // Disable that create-react-app will open the page in the browser
|
'BROWSER': 'none', // Disable that create-react-app will open the page in the browser
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,7 @@ import { Modifier, Suite, TestCase } from './test';
|
||||||
import { Annotations, TestError, TestInfo, TestInfoImpl, TestStepInternal, WorkerInfo } from './types';
|
import { Annotations, TestError, TestInfo, TestInfoImpl, TestStepInternal, WorkerInfo } from './types';
|
||||||
import { ProjectImpl } from './project';
|
import { ProjectImpl } from './project';
|
||||||
import { FixturePool, FixtureRunner } from './fixtures';
|
import { FixturePool, FixtureRunner } from './fixtures';
|
||||||
import { DeadlineRunner, raceAgainstDeadline } from 'playwright-core/src/utils/async';
|
import { DeadlineRunner, raceAgainstDeadline } from 'playwright-core/lib/utils/async';
|
||||||
|
|
||||||
const removeFolderAsync = util.promisify(rimraf);
|
const removeFolderAsync = util.promisify(rimraf);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -14,6 +14,6 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const { installBrowsersForNpmInstall } = require('playwright-core/src/utils/registry');
|
const { installBrowsersForNpmInstall } = require('playwright-core/lib/utils/registry');
|
||||||
|
|
||||||
installBrowsersForNpmInstall(['webkit']);
|
installBrowsersForNpmInstall(['webkit']);
|
||||||
|
|
|
||||||
|
|
@ -14,6 +14,6 @@
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const { installDefaultBrowsersForNpmInstall } = require('playwright-core/src/utils/registry');
|
const { installDefaultBrowsersForNpmInstall } = require('playwright-core/lib/utils/registry');
|
||||||
|
|
||||||
installDefaultBrowsersForNpmInstall();
|
installDefaultBrowsersForNpmInstall();
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@
|
||||||
import { playwrightTest as test, expect } from './config/browserTest';
|
import { playwrightTest as test, expect } from './config/browserTest';
|
||||||
import fs from 'fs';
|
import fs from 'fs';
|
||||||
import * as path from 'path';
|
import * as path from 'path';
|
||||||
import { getUserAgent } from 'playwright-core/src/utils/utils';
|
import { getUserAgent } from 'playwright-core/lib/utils/utils';
|
||||||
import WebSocket from 'ws';
|
import WebSocket from 'ws';
|
||||||
import { suppressCertificateWarning } from './config/utils';
|
import { suppressCertificateWarning } from './config/utils';
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@
|
||||||
import { contextTest as test, expect } from '../config/browserTest';
|
import { contextTest as test, expect } from '../config/browserTest';
|
||||||
import { playwrightTest } from '../config/browserTest';
|
import { playwrightTest } from '../config/browserTest';
|
||||||
import http from 'http';
|
import http from 'http';
|
||||||
import { getUserAgent } from 'playwright-core/src/utils/utils';
|
import { getUserAgent } from 'playwright-core/lib/utils/utils';
|
||||||
import { suppressCertificateWarning } from '../config/utils';
|
import { suppressCertificateWarning } from '../config/utils';
|
||||||
|
|
||||||
test('should create a worker from a service worker', async ({ page, server }) => {
|
test('should create a worker from a service worker', async ({ page, server }) => {
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@ import * as path from 'path';
|
||||||
import * as fs from 'fs';
|
import * as fs from 'fs';
|
||||||
import { installCoverageHooks } from './coverage';
|
import { installCoverageHooks } from './coverage';
|
||||||
import { start } from '../../packages/playwright-core/lib/outofprocess';
|
import { start } from '../../packages/playwright-core/lib/outofprocess';
|
||||||
import { GridClient } from 'playwright-core/src/grid/gridClient';
|
import { GridClient } from 'playwright-core/lib/grid/gridClient';
|
||||||
import type { LaunchOptions } from 'playwright-core';
|
import type { LaunchOptions } from 'playwright-core';
|
||||||
import { commonFixtures, CommonFixtures, serverFixtures, ServerFixtures, ServerOptions } from './commonFixtures';
|
import { commonFixtures, CommonFixtures, serverFixtures, ServerFixtures, ServerOptions } from './commonFixtures';
|
||||||
|
|
||||||
|
|
@ -91,7 +91,7 @@ const baseFixtures: Fixtures<{}, BaseOptions & BaseFixtures> = {
|
||||||
service: new ServiceMode(),
|
service: new ServiceMode(),
|
||||||
driver: new DriverMode(),
|
driver: new DriverMode(),
|
||||||
}[mode];
|
}[mode];
|
||||||
require('playwright-core/src/utils/utils').setUnderTest();
|
require('playwright-core/lib/utils/utils').setUnderTest();
|
||||||
const playwright = await modeImpl.setup(workerInfo.workerIndex);
|
const playwright = await modeImpl.setup(workerInfo.workerIndex);
|
||||||
await run(playwright);
|
await run(playwright);
|
||||||
await modeImpl.teardown();
|
await modeImpl.teardown();
|
||||||
|
|
|
||||||
|
|
@ -16,7 +16,7 @@
|
||||||
|
|
||||||
import type { Fixtures } from '@playwright/test';
|
import type { Fixtures } from '@playwright/test';
|
||||||
import type { Browser, BrowserContext, BrowserContextOptions, BrowserType, LaunchOptions, Page } from 'playwright-core';
|
import type { Browser, BrowserContext, BrowserContextOptions, BrowserType, LaunchOptions, Page } from 'playwright-core';
|
||||||
import { removeFolders } from 'playwright-core/src/utils/utils';
|
import { removeFolders } from 'playwright-core/lib/utils/utils';
|
||||||
import { ReuseBrowserContextStorage } from '@playwright/test/src/index';
|
import { ReuseBrowserContextStorage } from '@playwright/test/src/index';
|
||||||
import * as path from 'path';
|
import * as path from 'path';
|
||||||
import * as fs from 'fs';
|
import * as fs from 'fs';
|
||||||
|
|
@ -24,7 +24,7 @@ import * as os from 'os';
|
||||||
import { RemoteServer, RemoteServerOptions } from './remoteServer';
|
import { RemoteServer, RemoteServerOptions } from './remoteServer';
|
||||||
import { baseTest, CommonWorkerFixtures } from './baseTest';
|
import { baseTest, CommonWorkerFixtures } from './baseTest';
|
||||||
import { CommonFixtures } from './commonFixtures';
|
import { CommonFixtures } from './commonFixtures';
|
||||||
import type { ParsedStackTrace } from 'playwright-core/src/utils/stackTrace';
|
import type { ParsedStackTrace } from 'playwright-core/lib/utils/stackTrace';
|
||||||
|
|
||||||
type PlaywrightWorkerOptions = {
|
type PlaywrightWorkerOptions = {
|
||||||
executablePath: LaunchOptions['executablePath'];
|
executablePath: LaunchOptions['executablePath'];
|
||||||
|
|
|
||||||
|
|
@ -15,7 +15,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import http from 'http';
|
import http from 'http';
|
||||||
import { getPlaywrightVersion } from 'playwright-core/src/utils/utils';
|
import { getPlaywrightVersion } from 'playwright-core/lib/utils/utils';
|
||||||
import { expect, playwrightTest as it } from './config/browserTest';
|
import { expect, playwrightTest as it } from './config/browserTest';
|
||||||
|
|
||||||
it.skip(({ mode }) => mode !== 'default');
|
it.skip(({ mode }) => mode !== 'default');
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,7 @@ import fs from 'fs';
|
||||||
import http2 from 'http2';
|
import http2 from 'http2';
|
||||||
import type { BrowserContext, BrowserContextOptions } from 'playwright-core';
|
import type { BrowserContext, BrowserContextOptions } from 'playwright-core';
|
||||||
import type { AddressInfo } from 'net';
|
import type { AddressInfo } from 'net';
|
||||||
import type { Log } from 'playwright-core/src/server/supplements/har/har';
|
import type { Log } from 'playwright-core/lib/server/supplements/har/har';
|
||||||
|
|
||||||
async function pageWithHar(contextFactory: (options?: BrowserContextOptions) => Promise<BrowserContext>, testInfo: any, outputPath: string = 'test.har') {
|
async function pageWithHar(contextFactory: (options?: BrowserContextOptions) => Promise<BrowserContext>, testInfo: any, outputPath: string = 'test.har') {
|
||||||
const harPath = testInfo.outputPath(outputPath);
|
const harPath = testInfo.outputPath(outputPath);
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@
|
||||||
import { contextTest } from '../config/browserTest';
|
import { contextTest } from '../config/browserTest';
|
||||||
import type { Page } from 'playwright-core';
|
import type { Page } from 'playwright-core';
|
||||||
import * as path from 'path';
|
import * as path from 'path';
|
||||||
import type { Source } from 'playwright-core/src/server/supplements/recorder/recorderTypes';
|
import type { Source } from 'playwright-core/lib/server/supplements/recorder/recorderTypes';
|
||||||
import { CommonFixtures, TestChildProcess } from '../config/commonFixtures';
|
import { CommonFixtures, TestChildProcess } from '../config/commonFixtures';
|
||||||
export { expect } from '@playwright/test';
|
export { expect } from '@playwright/test';
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -18,7 +18,7 @@ import { test, expect, stripAscii } from './playwright-test-fixtures';
|
||||||
import fs from 'fs';
|
import fs from 'fs';
|
||||||
import path from 'path';
|
import path from 'path';
|
||||||
import { spawnSync } from 'child_process';
|
import { spawnSync } from 'child_process';
|
||||||
import { registry } from 'playwright-core/src/utils/registry';
|
import { registry } from 'playwright-core/lib/utils/registry';
|
||||||
|
|
||||||
const ffmpeg = registry.findExecutable('ffmpeg')!.executablePath();
|
const ffmpeg = registry.findExecutable('ffmpeg')!.executablePath();
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -17,7 +17,7 @@
|
||||||
import fs from 'fs';
|
import fs from 'fs';
|
||||||
import path from 'path';
|
import path from 'path';
|
||||||
import { test as baseTest, expect } from './playwright-test-fixtures';
|
import { test as baseTest, expect } from './playwright-test-fixtures';
|
||||||
import { HttpServer } from 'playwright-core/src/utils/httpServer';
|
import { HttpServer } from 'playwright-core/lib/utils/httpServer';
|
||||||
|
|
||||||
const test = baseTest.extend<{ showReport: () => Promise<void> }>({
|
const test = baseTest.extend<{ showReport: () => Promise<void> }>({
|
||||||
showReport: async ({ page }, use, testInfo) => {
|
showReport: async ({ page }, use, testInfo) => {
|
||||||
|
|
|
||||||
|
|
@ -9,6 +9,10 @@
|
||||||
"strictBindCallApply": true,
|
"strictBindCallApply": true,
|
||||||
"allowSyntheticDefaultImports": true,
|
"allowSyntheticDefaultImports": true,
|
||||||
"useUnknownInCatchVariables": false,
|
"useUnknownInCatchVariables": false,
|
||||||
|
"baseUrl": ".",
|
||||||
|
"paths": {
|
||||||
|
"playwright-core/lib/*": ["../packages/playwright-core/src/*"]
|
||||||
|
},
|
||||||
},
|
},
|
||||||
"include": ["**/*.spec.js", "**/*.ts", "index.d.ts"],
|
"include": ["**/*.spec.js", "**/*.ts", "index.d.ts"],
|
||||||
"exclude": ["playwright-test/"]
|
"exclude": ["playwright-test/"]
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@ import fs from 'fs';
|
||||||
import path from 'path';
|
import path from 'path';
|
||||||
import { spawnSync } from 'child_process';
|
import { spawnSync } from 'child_process';
|
||||||
import { PNG } from 'pngjs';
|
import { PNG } from 'pngjs';
|
||||||
import { registry } from 'playwright-core/src/utils/registry';
|
import { registry } from 'playwright-core/lib/utils/registry';
|
||||||
|
|
||||||
const ffmpeg = registry.findExecutable('ffmpeg')!.executablePath();
|
const ffmpeg = registry.findExecutable('ffmpeg')!.executablePath();
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -5,7 +5,8 @@
|
||||||
"lib": ["esnext", "dom", "DOM.Iterable"],
|
"lib": ["esnext", "dom", "DOM.Iterable"],
|
||||||
"baseUrl": ".",
|
"baseUrl": ".",
|
||||||
"paths": {
|
"paths": {
|
||||||
"*": ["./packages/*/"]
|
"*": ["./packages/*/"],
|
||||||
|
"playwright-core/lib/*": ["./packages/playwright-core/src/*"]
|
||||||
},
|
},
|
||||||
"esModuleInterop": true,
|
"esModuleInterop": true,
|
||||||
"strict": true,
|
"strict": true,
|
||||||
|
|
|
||||||
|
|
@ -4,7 +4,7 @@ const fs = require('fs');
|
||||||
const util = require('util');
|
const util = require('util');
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const {spawn} = require('child_process');
|
const {spawn} = require('child_process');
|
||||||
const {registryDirectory} = require('playwright-core/src/utils/registry.js');
|
const {registryDirectory} = require('playwright-core/lib/utils/registry.js');
|
||||||
|
|
||||||
const readdirAsync = util.promisify(fs.readdir.bind(fs));
|
const readdirAsync = util.promisify(fs.readdir.bind(fs));
|
||||||
const readFileAsync = util.promisify(fs.readFile.bind(fs));
|
const readFileAsync = util.promisify(fs.readFile.bind(fs));
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue