UNPKG
jasmine-atm-reporter
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
npm module for jest-puppeteer to upload result in atm
jasmine-atm-reporter
/
src
/
reporter.js
12 lines
(10 loc)
•
219 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
var
fs =
require
(
'fs'
)
class
Reporter
{
setTestCaseID
(
tcid
) { process.
argv
.
TEST_CASE_ID
= tcid; }
setEnvironment
(
env
){ process.
argv
.
ENVIRONMENT
= env; } }
module
.
exports
=
Reporter
;