JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 79
  • Score
    100M100P100Q40387F

Package Exports

  • cypress-angular-dev-server
  • cypress-angular-dev-server/package.json

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,
        ...
    },
    ...
})