-
Notifications
You must be signed in to change notification settings - Fork 3.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: suppress EGL Driver message in electron 32
- Loading branch information
1 parent
94d360e
commit f90096e
Showing
6 changed files
with
168 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# @cypress/angular-signals | ||
|
||
Mount Angular components in the open source [Cypress.io](https://www.cypress.io/) test runner. This package is an extension of `@cypress/angular`, but with [signals](https://angular.dev/guide/signals) support. | ||
|
||
> **Note:** This package is bundled with the `cypress` package and should not need to be installed separately. See the [Angular Component Testing Docs](https://docs.cypress.io/guides/component-testing/angular/overview) for mounting Angular components. Installing and importing `mount` from `@cypress/angular-signals` should only be done for advanced use-cases. | ||
## Development | ||
|
||
Run `yarn build` to compile and sync packages to the `cypress` cli package. | ||
|
||
## [Changelog](./CHANGELOG.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
{ | ||
"name": "@cypress/angular-signals", | ||
"version": "0.0.0-development", | ||
"description": "Test Angular Components using Signals with Cypress", | ||
"main": "dist/index.js", | ||
"scripts": { | ||
"prebuild": "rimraf dist", | ||
"build": "rollup -c rollup.config.mjs", | ||
"postbuild": "node ../../scripts/sync-exported-npm-with-cli.js", | ||
"check-ts": "tsc --noEmit", | ||
"dev": "rollup -c rollup.config.mjs -w", | ||
"lint": "eslint --ext .js,.ts,.json, ." | ||
}, | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"@angular/common": "^17.2.0", | ||
"@angular/core": "^17.2.0", | ||
"@angular/platform-browser-dynamic": "^17.2.0", | ||
"@cypress/mount-utils": "0.0.0-development", | ||
"typescript": "~5.4.5", | ||
"zone.js": "~0.14.6" | ||
}, | ||
"peerDependencies": { | ||
"@angular/common": ">=17.2", | ||
"@angular/core": ">=17.2", | ||
"@angular/platform-browser-dynamic": ">=17.2", | ||
"rxjs": ">=7.5.0", | ||
"zone.js": ">=0.13.0" | ||
}, | ||
"files": [ | ||
"dist" | ||
], | ||
"types": "dist/index.d.ts", | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/cypress-io/cypress.git" | ||
}, | ||
"homepage": "https://github.com/cypress-io/cypress/blob/develop/npm/angular-signals/#readme", | ||
"bugs": "https://github.com/cypress-io/cypress/issues/new?assignees=&labels=npm%3A%20%40cypress%2Fangular&template=1-bug-report.md&title=", | ||
"keywords": [ | ||
"angular", | ||
"cypress", | ||
"cypress-io", | ||
"test", | ||
"testing" | ||
], | ||
"contributors": [ | ||
{ | ||
"name": "Bill Glesias", | ||
"social": "@atofstryker" | ||
} | ||
], | ||
"module": "dist/index.js", | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"nx": { | ||
"targets": { | ||
"build": { | ||
"outputs": [ | ||
"{workspaceRoot}/cli/angular-signals" | ||
] | ||
} | ||
} | ||
}, | ||
"standard": { | ||
"globals": [ | ||
"Cypress", | ||
"cy", | ||
"expect" | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# @cypress/vue2 | ||
|
||
Mount Vue 2 components in the open source [Cypress.io](https://www.cypress.io/) test runner | ||
|
||
> **Note:** This package is bundled with the `cypress` package and should not need to be installed separately. See the [Vue Component Testing Docs](https://docs.cypress.io/guides/component-testing/vue/overview) for mounting Vue components. Installing and importing `mount` from `@cypress/vue2` should only be done for advanced use-cases. | ||
## [Changelog](./CHANGELOG.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
{ | ||
"name": "@cypress/vue2", | ||
"version": "0.0.0-development", | ||
"description": "Browser-based Component Testing for Vue.js@2 with Cypress.io ✌️🌲", | ||
"main": "dist/cypress-vue2.cjs.js", | ||
"scripts": { | ||
"build": "rimraf dist && yarn rollup -c rollup.config.mjs", | ||
"postbuild": "node ../../scripts/sync-exported-npm-with-cli.js", | ||
"check-ts": "tsc --noEmit", | ||
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.json,.vue .", | ||
"test": "echo \"Tests for @cypress/vue2 are run from system-tests\"", | ||
"test-ci": "node ../../scripts/run-ct-examples.js --examplesList=./examples.env", | ||
"watch": "yarn build --watch --watch.exclude ./dist/**/*" | ||
}, | ||
"devDependencies": { | ||
"@cypress/mount-utils": "0.0.0-development", | ||
"@rollup/plugin-json": "^4.1.0", | ||
"@rollup/plugin-replace": "^2.3.1", | ||
"@vue/test-utils": "^1.3.1", | ||
"tslib": "^2.1.0", | ||
"typescript": "~5.4.5", | ||
"vue": "2.7.16" | ||
}, | ||
"peerDependencies": { | ||
"cypress": ">=4.5.0", | ||
"vue": "^2.0.0" | ||
}, | ||
"files": [ | ||
"dist/**/*", | ||
"src/**/*.js" | ||
], | ||
"engines": { | ||
"node": ">=8" | ||
}, | ||
"types": "dist/index.d.ts", | ||
"license": "MIT", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/cypress-io/cypress.git" | ||
}, | ||
"homepage": "https://github.com/cypress-io/cypress/blob/develop/npm/vue/#readme", | ||
"bugs": "https://github.com/cypress-io/cypress/issues/new?assignees=&labels=npm%3A%20%40cypress%2Fvue&template=1-bug-report.md&title=", | ||
"keywords": [ | ||
"cypress", | ||
"vue" | ||
], | ||
"unpkg": "dist/cypress-vue2.browser.js", | ||
"module": "dist/cypress-vue2.esm-bundler.js", | ||
"publishConfig": { | ||
"access": "public" | ||
}, | ||
"nx": { | ||
"targets": { | ||
"build": { | ||
"outputs": [ | ||
"{workspaceRoot}/cli/vue2", | ||
"{projectRoot}/dist" | ||
] | ||
} | ||
}, | ||
"implicitDependencies": [ | ||
"!cypress" | ||
] | ||
} | ||
} |