Using Node.js Agents - Scanning a build
To collect coverage information, SeaLights agents must scan the javascript files for the build information.
Scanning a build
Scanning a build in Node.js is done using the Node.js Build scanner with the build flag.
Unix:
./node_modules/.bin/slnodejs scan --tokenfile /path/to/sltoken.txt --buildsessionidfile buildSessionId --workspacepath "." --scm git --es6Modules
Windows:
call .\node_modules\.bin\slnodejs scan --tokenfile \path\to\sltoken.txt --buildsessionidfile buildSessionId --workspacepath "." --scm git --es6Modules
For React applications, you should add the flag: --babylonPlugin jsx
To scan both ts & tsx files you should add the flag: --babylonPlugins typescript,jsx
In order to ignore specific files or folders during the Scan operation, please refer to https://sealights.atlassian.net/l/c/n6GuFwok
See 'Node.js Command Reference - Scanning a build' for full parameter details
Scanning multi modules
If you want to report separate parts of the application as separate modules, you can do so by scanning each part with the --uniqueModuleId
option.
When you finish reporting all the modules, you need to send the event with the buildend
command and either the --ok
or --failed
depending on the result of your build process.
It is important to always use the exact same module names each time you report a new build.
Unix |
BASH
|
Windows |
POWERSHELL
|