olyckne/jest-runner-phpunit

View on GitHub
examples/simple/package.json

Summary

Maintainability
Test Coverage
{
  "name": "jest-runner-phpunit-example-simple",
  "version": "0.0.1",
  "description": "A simple example of jest-runner-phpunit",
  "main": "index.js",
  "author": "Mattias Lyckne <mattias@lyckne.se>",
  "license": "MIT",
  "private": true,
  "devDependencies": {
    "jest": "^23.1.0",
    "jest-runner-phpunit": "^0.0.5"
  },
  "jest": {
    "runner": "jest-runner-phpunit",
    "displayName": "phpunit",
    "moduleFileExtensions": [
      "php"
    ],
    "testMatch": [
      "<rootDir>/tests/**/*Test.php"
    ]
  }
}