Skip to content
This repository has been archived by the owner on Mar 11, 2024. It is now read-only.

deepcrawl/branded-jest-html-reporter

Repository files navigation

Readme...

npm install @deepcrawl/branded-jest-html-reporter

then in jest.config.js:

reporters: [
    "default",
    [
      "@deepcrawl/branded-jest-html-reporter",
      {
        projectName: "@deepcrawl/branded-jest-html-reporter",
        projectDescription: "A DeepCrawl branded Jest Html Reporter",
        repositoryUrl: "https://github.com/deepcrawl/branded-jest-html-reporter",
        outputDir: ".",
        outputFile: "index.html",
        accessKeyId: "xxxxxxxxx",
        secretAccessKey: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
        bucketName: "YOUR_BUCKET_NAME",
        region: "YOUR_BUCKET_REGION",
      },
    ],
  ],