1.0.5 • Published 5 years ago

angular-testcafe-builder v1.0.5

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

angular-testcafe

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

Use in angular.json

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

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

NOTE: port/host is for Angular to be served on. ports are the ports for TestCafe to run on

build

npm run build

pack

npm pack

NOT Implemented (TODO):

  • remote browsers
  • --test argument
  • --test-grep argument
  • --test-meta argument
  • --fixture argument
  • --fixture-grep argument
  • --fixture-meta argument
  • QR code
  • tests
1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago