Files
cypress/npm/angular/package.json
Lachlan Miller 792980ac12 feat: support specPattern, deprecate integrationFolder and componentFolder (#19319)
* use new specPattern API

* remove projectApi.findSpecs

* do not require integration folder

* support --spec

* support --spec

* remove old code

* remove old code

* nuke old code

* no appvetor

* update

* correct url for ct

* work on migrating launchpad

* update ct spec url

* types

* types

* dead code

* remove old endpiont

* revert back circle.yml

* update missing config

* delete spec util

* update config

* update config

* config again

* update spec pattern

* updated vue config

* update spec pattern for ui components

* update config for vite dev server

* update snapshots

* update config

* update design system config

* fix spec pattern in reporter

* update default

* update deprecated spec snapshots

* update system tests

* update run mode output

* revert changes

* lint

* remove scaffold tests

* update angular

* fix CT

* update circle yml

* fix system tests for ct

* fix tests

* work on server unit tests

* patch package

* patch package again

* update test

* try not to rely on config async loading too much

* normalize specPattern to array

* update snapshot

* use base name

* deal with react-scripts later

* update snapshot

* hacky way to update snapshots

* new hack to update snapshots

* trying again

* hacky fix

* ci: snapshots

* ci: snapshots

* snapshots

* mas updates

* update spec API

* fix test

* fix test

* update

* update test

* fix test

* update plugin

* update spec

* webpack optinos

* Update launchpad tests

* fix screenshot paths

* updated snapshot

* change pattern

* guard

* fix smoke test

* patch code coverage

* update percy config

* fix specs

* try updating example project

* update snapshots

* remove old test

* remove snapshot hack

* add back appveyor

* remove old code

* update snapshot

* Fix tests

* wip

* revert snapshot

* reverted all snaps

* remove only

* remove commnet

* remove old code

* reverted file

* lint

* revert video compression spec

* update snapshot

* update spec path logic

* update snap

* updated snap

* snaps

* snaps

* fix spec

* rename ignoreTestFiles to ignoreSpecPattern

* update screenshot dir for runner-ct

* update deprecations

* update

* upate

* fix test

* update snaps

* update snap

* updating snap

* added missing snaps

* updated cypress run mode integration spec

* electron snapshot

* ensure newly scaffold specs are cached

* fix launchpad spec

* types

* update test

* transpile based on spec pattern

* add back example

* remove unnecessary async and nodeVersion

* removed old test

* update spec pattern and add defensive check around platform

* remove unused feature flag

* added tests

* fix react example

* update test

* update config

* fix spec finding in run mode

* fix tests

* fixing specs

* fix switching between specs

* remove invalid test

* increase timeout

Co-authored-by: estrada9166 <estrada9166@hotmail.com>
2022-01-04 14:24:24 +10:00

98 lines
2.8 KiB
JSON

{
"name": "@cypress/angular",
"version": "0.0.0-development",
"description": "Test Angular components using Cypress",
"private": true,
"main": "dist/index.js",
"scripts": {
"build": "tsc --project tsconfig.lib.json",
"watch": "tsc --project tsconfig.lib.json -w",
"cy:open": "node ../../scripts/cypress.js open --component",
"cy:run": "node ../../scripts/cypress.js run --component",
"ng": "ng",
"app-start": "ng serve",
"app-build": "ng build",
"test": "yarn cy:run",
"test-ci": "yarn cy:run",
"postinstall": "patch-package"
},
"dependencies": {
"@cypress/mount-utils": "0.0.0-development",
"debug": "^4.3.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.1102.12",
"@angular-eslint/eslint-plugin": "4.2.0",
"@angular/animations": "11.2.13",
"@angular/cdk": "11.2.12",
"@angular/cli": "11.2.12",
"@angular/common": "11.2.13",
"@angular/compiler": "11.2.13",
"@angular/compiler-cli": "11.2.13",
"@angular/core": "11.2.13",
"@angular/forms": "11.2.13",
"@angular/language-service": "11.2.13",
"@angular/localize": "11.2.13",
"@angular/material": "11.2.12",
"@angular/platform-browser": "11.2.13",
"@angular/platform-browser-dynamic": "11.2.13",
"@angular/router": "11.2.13",
"@cypress/code-coverage": "3.9.5",
"@cypress/webpack-dev-server": "0.0.0-development",
"@cypress/webpack-preprocessor": "5.7.0",
"@types/cypress-image-snapshot": "3.1.5",
"@types/node": "8.10.66",
"angular-router-loader": "0.8.5",
"angular2-template-loader": "0.6.2",
"codelyzer": "6.0.2",
"core-js": "3.12.1",
"cypress": "0.0.0-development",
"cypress-image-snapshot": "4.0.1",
"html-loader": "2.1.2",
"html-webpack-plugin": "5.3.1",
"istanbul-instrumenter-loader": "3.0.1",
"ng-inline-svg": "12.1.0",
"ngx-build-plus": "11.0.0",
"primeng": "11.3.2",
"raw-loader": "1.0.0",
"renderkid": "2.0.5",
"rxjs": "~6.6.0",
"semantic-release": "17.4.2",
"to-string-loader": "1.1.6",
"ts-loader": "8.1.0",
"ts-node": "^10.2.1",
"tslib": "^2.2.0",
"tslint": "5.20.1",
"typescript": "4.2.4",
"webpack-dev-server": "4.0.0",
"zone.js": "0.11.4"
},
"peerDependencies": {
"@angular/common": "*",
"@angular/compiler": "*",
"@angular/core": "*",
"@angular/platform-browser": "*",
"@angular/platform-browser-dynamic": "*",
"core-js": "*",
"zone.js": "*"
},
"files": [
"dist",
"support.js"
],
"types": "dist",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cypress-io/cypress.git"
},
"homepage": "https://on.cypress.io/component-testing",
"author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
"contributors": [
{
"name": "Jean-Michel Leclercq",
"social": "@LeJeanbono"
}
]
}