Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
chore: Updated versioned tests readme
  • Loading branch information
jsumners-nr committed Apr 24, 2024
commit b58eb358efbcff63dfd61de7739d81b45780dc39
19 changes: 18 additions & 1 deletion test/versioned/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,24 @@ that are specific to our versioned test runner. The following is a
//
// If this property is omitted, the tool used to build our compatibility
// document(s) will not include any modules from this versioned test suite.
"targets": ["module"],
"targets": [
{
// The name of the module being tested for compatibility.
"name": "module",

// The minimum agent version that supports the named module.
"minAgentVersion": "2.6.0"
},

{
"name": "other-module",

// If the named module requires a specific agent implemenation, for
// example `@newrelic/next`, then the full agent module identifier with
// version string should be provided.
"minAgentVersion": "@newrelic/[email protected]"
}
],

// `version` is ignored.
"version": "0.0.0",
Expand Down