Package Exports
- cypress-angular-dev-server
- cypress-angular-dev-server/bundles/cypress-angular-dev-server.umd.js
- cypress-angular-dev-server/fesm2015/cypress-angular-dev-server.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (cypress-angular-dev-server) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Cypress Angular Dev Server
This package is used as the dev server for cypress-angular-component-testing:
Getting Started
To install the package you need to first install it using:
npm install cypress-angular-dev-server// cypress.config.ts
import { defineConfig } from 'cypress';
import { devServer } from 'cypress-angular-dev-server' // the local path is ./projects/angular-dev-server/src/public_api
export default defineConfig({
component: {
devServer,
...
},
...
})