AugurProject/augur-ui

View on GitHub
jest-puppeteer.config.js

Summary

Maintainability
A
1 hr
Test Coverage
module.exports = {
  name: "integration",
  displayName: "Integration Tests",

  preset: "jest-puppeteer",
  setupTestFrameworkScriptFile: "expect-puppeteer",
  roots: ["<rootDir>/integration"],
  transform: {
    "^.+\\.tsx?$": "ts-jest"
  },
  testRegex: "(.*(test|spec))\\.tsx?$",
  moduleFileExtensions: ["ts", "tsx", "js", "jsx", "json", "node"]
};