diff --git a/src/test/index.ts b/src/test/index.ts index 8db7954274..c214403652 100644 --- a/src/test/index.ts +++ b/src/test/index.ts @@ -28,10 +28,9 @@ export const test = _baseTest.extend { + browser: [ async ({ playwright, browserName, headless, channel, launchOptions }, use) => { if (!['chromium', 'firefox', 'webkit'].includes(browserName)) throw new Error(`Unexpected browserName "${browserName}", must be one of "chromium", "firefox" or "webkit"`); const options: LaunchOptions = { @@ -42,8 +41,6 @@ export const test = _baseTest.extend { + context: async ({ browser, screenshot, trace, video, acceptDownloads, bypassCSP, colorScheme, deviceScaleFactor, extraHTTPHeaders, hasTouch, geolocation, httpCredentials, ignoreHTTPSErrors, isMobile, javaScriptEnabled, locale, offline, permissions, proxy, storageState, viewport, timezoneId, userAgent, contextOptions }, use, testInfo) => { testInfo.snapshotSuffix = process.platform; if (process.env.PWDEBUG) testInfo.setTimeout(0); @@ -91,8 +87,6 @@ export const test = _baseTest.extend { - expect(testInfo.workerIndex).toBe(1); + expect(testInfo.workerIndex).toBe(0); }); const test2 = test.extend({ @@ -539,7 +539,7 @@ test('should create a new worker for worker fixtures', async ({ runInlineTest }) }, { scope: 'worker' }], }); test2('a test', async ({ foo }, testInfo) => { - expect(testInfo.workerIndex).toBe(0); + expect(testInfo.workerIndex).toBe(1); }); `, 'b.test.ts': ` @@ -551,7 +551,7 @@ test('should create a new worker for worker fixtures', async ({ runInlineTest }) }, }); test2('b test', async ({ bar }, testInfo) => { - expect(testInfo.workerIndex).toBe(1); + expect(testInfo.workerIndex).toBe(0); }); `, }, { workers: 1 }); diff --git a/types/test.d.ts b/types/test.d.ts index 10caf7162a..47b1276942 100644 --- a/types/test.d.ts +++ b/types/test.d.ts @@ -882,13 +882,6 @@ type BrowserChannel = Exclude; */ type ColorScheme = Exclude; -/** - * Emulates `'prefers-reduced-motion'` media feature, - * supported values are `'reduce'`, `'no-preference'`. - * @see BrowserContextOptions - */ - type ReducedMotion = Exclude; - /** * An object containing additional HTTP headers to be sent with every request. All header values must be strings. * @see BrowserContextOptions @@ -939,13 +932,6 @@ export type PlaywrightWorkerOptions = { */ channel: BrowserChannel | undefined; - /** - * Slows down Playwright operations by the specified amount of milliseconds. - * Useful so that you can see what is going on. - * @see LaunchOptions - */ - slowMo: number | undefined; - /** * Options used to launch the browser. Other options above (e.g. `headless`) take priority. * @see LaunchOptions @@ -1011,12 +997,6 @@ export type PlaywrightTestOptions = { */ colorScheme: ColorScheme | undefined; - /** - * Emulates `'prefers-reduced-motion'` media feature, supported values are `'reduce'`, `'no-preference'`. - * @see BrowserContextOptions - */ - reducedMotion: ReducedMotion | undefined; - /** * Specify device scale factor (can be thought of as dpr). Defaults to `1`. * @see BrowserContextOptions