wlucha / angular-testcafe

Angular builder to run testcafe tests

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

angular-testcafe Build Status

A custom Angular builder for TestCafe. Serves the Angular application, and then runs the TestCafe tests.

Install

$ npm install --save-dev @politie/angular-testcafe-builder

Use in angular.json

{
  "projects": {
    "my-project-e2e": {
      "architect": {
        "e2e": {
          "builder": "@politie/angular-testcafe-builder:testcafe",
          "options": {
            "browsers": [
              "chrome --no-sandbox",
              "firefox"
            ],
            "src": ["e2e/*.e2e-spec.ts"],
            "reporters": [
              {
                "name": "html",
                "output": "path/to/my/report.html"
              },
              {
                "name": "spec"
              }
            ]
          }
        }
      }
    }
  }
}

NOTE: check schema.json for a list of all options

A tutorial how to use Angular and Testcafe combined with this builder can be found here

build

$ npm run build

pack

$ npm pack

NOT Implemented (TODO):

  • remote browsers
  • QR code
  • video
  • ssl
  • clientScripts

About

Angular builder to run testcafe tests

License:MIT License


Languages

Language:TypeScript 86.5%Language:HTML 12.8%Language:CSS 0.7%