michaelleeallen / mocha-junit-reporter

A JUnit XML reporter for mocha.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Can't use home directory in path of mochaFile

Floriferous opened this issue · comments

It seems like using ~/ in the mochaFile path does not work. I've tried this on circleCI, and was able to make it write to the same directory if I use a relative path instead, so it does not seem to be a permissions issue. I also tried using the MOCHA_FILE env var, but it didn't work either.

Configs that do not work:

  'reporter-options': ['mochaFile=~/results/test-results.xml'],

  'reporter-options': ['mochaFile="~/results/test-results.xml"'],

Config that does work

  'reporter-options': ['mochaFile=../results/test-results.xml'],