Files
mattermost/e2e-tests/playwright/lib/package.json
T
sabril fb84bccb2f Cherry pick #37570 to release-11.8 (#37732)
* E2E/Playwright: Add testcontainers to playwright-lib (#37570)

* add testcontainers to playwright-lib

* include retry mechanism for transient failures

* - Introduced a new command `testcontainers:up` in package.json to run Playwright tests with Testcontainers.
- Created a standalone Playwright configuration file `playwright.testcontainers-up.config.ts` for managing Testcontainers.
- Added a no-op test `testcontainers_up.spec.ts` to ensure the Testcontainers stack is up during the test run.
- Implemented a global setup script `testcontainers_up_global_setup.ts` to start and stop the Testcontainers stack.
- Updated dependencies in package.json, including adding `chalk` for logging.

* fix package-lock

* fix tsc and restore waiting for all migrations to complete

---------

Co-authored-by: Mattermost Build <build@mattermost.com>

* fix(e2e): remove obsolete CRT intro modal dismiss from uiClickSidebarItem

The CRT tutorial modal was removed in MM-66470; dismissing
#genericModalLabel races and flakes MM-T4261_3.

Co-authored-by: sabril <saturninoabril@users.noreply.github.com>

* fix(e2e): sync Playwright navigations to live testcontainers baseURL

After restartMattermostContainer remaps the host port, relative page.goto
must follow testConfig.baseURL rather than the worker-start config value.

Co-authored-by: sabril <saturninoabril@users.noreply.github.com>

* fix(e2e): restore eslint-disable for axe empty fixture pattern

Co-authored-by: sabril <saturninoabril@users.noreply.github.com>

* fix(e2e): ignore webhook assets in eslint; prettier README

Co-authored-by: sabril <saturninoabril@users.noreply.github.com>

* ci(e2e): fully adopt test-system-io and lighten Playwright services

Port #37413: drop the dual v1/v2 dispatch path, promote the test-system-io
templates to the canonical names, and remove legacy calculate-results / AWS
artifact upload plumbing.

For Playwright testcontainers on this release, leave optional sidecars
(openldap, keycloak, elasticsearch, opensearch, minio, azurite, webhook)
off by default and remove the related service-specific specs that are not
part of the older suite.

Co-authored-by: sabril <saturninoabril@users.noreply.github.com>

* style(e2e): prettier stack.ts after optional webhook change

Co-authored-by: sabril <saturninoabril@users.noreply.github.com>

* test(e2e): align testcontainers feature flags with release docker-compose

Mirror MM_FEATUREFLAGS_* from e2e-tests/.ci/server.generate.sh for each
release, dropping flags that do not exist in that release's FeatureFlags
struct (or were never enabled in the compose stack).

Co-authored-by: sabril <saturninoabril@users.noreply.github.com>

* e2e(playwright): omit unset Testcontainers env keys; align release docs

When optional webhook/sidecars are off, .env.testcontainers no longer
writes PW_*=undefined. Docs match empty DEFAULT_TESTCONTAINERS_SERVICES.

Co-authored-by: sabril <saturninoabril@users.noreply.github.com>

* e2e(playwright): prettier-format lib/README.md table

Fixes CI npm run check (prettier) failures from the services table edit.

Co-authored-by: sabril <saturninoabril@users.noreply.github.com>

---------

Co-authored-by: Mattermost Build <build@mattermost.com>
Co-authored-by: Cursor Agent <cursoragent@cursor.com>
Co-authored-by: sabril <saturninoabril@users.noreply.github.com>
2026-07-29 18:07:27 +02:00

77 lines
2.1 KiB
JSON

{
"name": "@mattermost/playwright-lib",
"version": "11.7.0",
"description": "A comprehensive end-to-end testing library for Mattermost web, desktop and plugin applications using Playwright",
"repository": {
"type": "git",
"url": "git+https://github.com/mattermost/mattermost.git"
},
"author": "mattermost",
"license": "MIT",
"bugs": {
"url": "https://github.com/mattermost/mattermost/issues"
},
"homepage": "https://github.com/mattermost/mattermost/tree/master/e2e-tests/playwright/lib#readme",
"type": "module",
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"keywords": [
"mattermost",
"e2e",
"playwright",
"test-automation"
],
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"build:watch": "npm run build -- --watch",
"build-tsc": "tsc --build --verbose",
"build-tsc:watch": "tsc --watch --preserveWatchOutput",
"clean": "rm -rf dist node_modules *.tsbuildinfo",
"tsc": "tsc -b"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@axe-core/playwright": "4.11.1",
"@azure/storage-blob": "12.33.0",
"@mattermost/client": "file:../../../webapp/platform/client",
"@mattermost/types": "file:../../../webapp/platform/types",
"@percy/cli": "1.31.11",
"@percy/playwright": "1.1.0",
"@testcontainers/postgresql": "12.0.4",
"async-wait-until": "2.0.31",
"axe-core": "4.11.2",
"chalk": "5.6.2",
"deepmerge": "4.3.1",
"dotenv": "17.4.2",
"ldapts": "9.0.0",
"luxon": "3.7.2",
"mime-types": "3.0.2",
"minio": "8.0.7",
"testcontainers": "12.0.4",
"uuid": "13.0.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "12.3.0",
"@types/luxon": "3.7.1",
"@types/mime-types": "3.0.1",
"@types/node": "25.6.0",
"rollup": "4.60.1",
"rollup-plugin-copy": "3.5.0"
},
"peerDependencies": {
"@playwright/test": ">=1.59.0"
}
}