Upgrades Playwright dependency to the latest version. Removes unnecessary test cleanup functions and simplifies test structure. Improves test stability by properly handling browser resources.
53 lines
1.7 KiB
JSON
53 lines
1.7 KiB
JSON
{
|
|
"name": "openvidu-meet-webcomponent",
|
|
"version": "1.0.0",
|
|
"main": "index.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "rollup -c",
|
|
"build:watch": "rollup -c -w",
|
|
"test:unit": "jest --forceExit --testPathPattern \"tests/unit\" --ci",
|
|
"test:e2e": "playwright test",
|
|
"test:e2e-core": "playwright test tests/e2e/core/",
|
|
"test:e2e-core-room": "playwright test tests/e2e/core/room.test.ts",
|
|
"test:e2e-core-events": "playwright test tests/e2e/core/events.test.ts",
|
|
"test:e2e-core-webhooks": "playwright test tests/e2e/core/webhooks.test.ts",
|
|
"test:e2e-ui-features": "playwright test tests/e2e/ui-feature-config.test.ts",
|
|
"test:e2e-e2ee-ui": "playwright test tests/e2e/e2ee-ui.test.ts",
|
|
"test:e2e-recording-access": "playwright test tests/e2e/recording-access.test.ts",
|
|
"lint": "eslint 'src/**/*.ts'"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "Apache-2.0",
|
|
"description": "",
|
|
"dependencies": {
|
|
"@openvidu-meet/typings": "workspace:*"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "1.58.0",
|
|
"@rollup/plugin-commonjs": "28.0.2",
|
|
"@rollup/plugin-node-resolve": "16.0.0",
|
|
"@rollup/plugin-terser": "0.4.4",
|
|
"@rollup/plugin-typescript": "12.1.4",
|
|
"@types/jest": "29.5.14",
|
|
"@typescript-eslint/eslint-plugin": "8.50.0",
|
|
"@typescript-eslint/parser": "8.50.0",
|
|
"eslint": "8.57.1",
|
|
"eslint-config-standard": "17.1.0",
|
|
"identity-obj-proxy": "3.0.0",
|
|
"jest": "29.7.0",
|
|
"jest-environment-jsdom": "29.7.0",
|
|
"pixelmatch": "7.1.0",
|
|
"playwright": "1.58.0",
|
|
"pngjs": "7.0.0",
|
|
"rollup": "4.34.9",
|
|
"rollup-plugin-postcss": "4.0.2",
|
|
"ts-jest": "29.2.6",
|
|
"ts-jest-resolver": "2.0.1",
|
|
"ts-node": "10.9.2",
|
|
"tslib": "2.8.1",
|
|
"typescript": "5.9.3"
|
|
}
|
|
}
|