mirror of
https://github.com/mattermost/mattermost.git
synced 2026-02-03 20:40:00 -05:00
Some checks are pending
API / build (push) Waiting to run
Server CI / Compute Go Version (push) Waiting to run
Server CI / Check mocks (push) Blocked by required conditions
Server CI / Check go mod tidy (push) Blocked by required conditions
Server CI / check-style (push) Blocked by required conditions
Server CI / Check serialization methods for hot structs (push) Blocked by required conditions
Server CI / Vet API (push) Blocked by required conditions
Server CI / Check migration files (push) Blocked by required conditions
Server CI / Generate email templates (push) Blocked by required conditions
Server CI / Check store layers (push) Blocked by required conditions
Server CI / Check mmctl docs (push) Blocked by required conditions
Server CI / Postgres with binary parameters (push) Blocked by required conditions
Server CI / Postgres (push) Blocked by required conditions
Server CI / Postgres (FIPS) (push) Blocked by required conditions
Server CI / Generate Test Coverage (push) Blocked by required conditions
Server CI / Run mmctl tests (push) Blocked by required conditions
Server CI / Run mmctl tests (FIPS) (push) Blocked by required conditions
Server CI / Build mattermost server app (push) Blocked by required conditions
Web App CI / check-lint (push) Waiting to run
Web App CI / check-i18n (push) Blocked by required conditions
Web App CI / check-types (push) Blocked by required conditions
Web App CI / test (platform) (push) Blocked by required conditions
Web App CI / test (mattermost-redux) (push) Blocked by required conditions
Web App CI / test (channels shard 1/4) (push) Blocked by required conditions
Web App CI / test (channels shard 2/4) (push) Blocked by required conditions
Web App CI / test (channels shard 3/4) (push) Blocked by required conditions
Web App CI / test (channels shard 4/4) (push) Blocked by required conditions
Web App CI / upload-coverage (push) Blocked by required conditions
Web App CI / build (push) Blocked by required conditions
* chore: upgrade playwright to 1.57 and its dependencies * bump webapp's npm to accept ^11.0.0 * updated per comment * fix failed tests
67 lines
1.8 KiB
JSON
67 lines
1.8 KiB
JSON
{
|
|
"name": "@mattermost/playwright-lib",
|
|
"version": "11.3.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": "commonjs",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"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.0",
|
|
"@mattermost/client": "file:../../../webapp/platform/client",
|
|
"@mattermost/types": "file:../../../webapp/platform/types",
|
|
"@percy/cli": "1.31.5",
|
|
"@percy/playwright": "1.0.10",
|
|
"async-wait-until": "2.0.31",
|
|
"axe-core": "4.11.0",
|
|
"deepmerge": "4.3.1",
|
|
"dotenv": "17.2.3",
|
|
"mime-types": "3.0.2",
|
|
"uuid": "13.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-typescript": "12.3.0",
|
|
"@types/mime-types": "3.0.1",
|
|
"@types/node": "25.0.3",
|
|
"rollup": "4.53.5",
|
|
"rollup-plugin-copy": "3.5.0"
|
|
},
|
|
"peerDependencies": {
|
|
"@playwright/test": "1.57.0"
|
|
}
|
|
}
|