We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Currently, the task opens the file in write mode, which clears the content of an existing file.
fd = fs.openSync(captureFile, 'w');
My use-case involves using this plugin to continuously test the code and use the JSON reporter for monitoring logs for mocha output. I propose to:
options: { captureFile: 'result.txt', captureFileMode: 'a' }
fd = fs.openSync(captureFile, 'a');
Feedback will be appreciated
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, the task opens the file in write mode, which clears the content of an existing file.
My use-case involves using this plugin to continuously test the code and use the JSON reporter for monitoring logs for mocha output. I propose to:
Feedback will be appreciated
The text was updated successfully, but these errors were encountered: