Get started today!
Ready to gain unparalleled visibility into your pipelines and testing workflows? Get started with Buildnote now and transform the way your team delivers software.
Get startedBuildnote CLI can collect Dart test results in JSON format, and submit them to the buildnote service
To enable collection of dart test results add the following section to buildnote.json
config file
{
"collect": {
...
"dart": {
"enabled": true,
"include": [
"**/dart-test*.json"
]
}
...
}
}
To exclude any paths from collection configure exclude
section with required globs.
{
"collect": {
...
"dart": {
"exclude": [
"/any/excluded/glob/**/"
]
}
...
}
}
Ready to gain unparalleled visibility into your pipelines and testing workflows? Get started with Buildnote now and transform the way your team delivers software.
Get started