Skip to content

15.3.0

Compare
Choose a tag to compare
@noomorph noomorph released this 23 Feb 09:33
· 2753 commits to master since this release

Features

  • feat(config): extensible artifacts json (#1923)
  • feat(artifacts): codec option for simulator video recording (#1920) …

tl;dr

Artifacts plugins have become more configurable from package.json, see a short example below:

{
  "detox": {
    "artifacts": {
      "plugins": {
        "video": {
          "android": {
            "bitRate": 4000000
          },
          "simulator": {
            "codec": "hevc"
          },
        }
      }
    }
  }
}