Skip to content

Commit

Permalink
chore: Updated versioned tests readme (#2159)
Browse files Browse the repository at this point in the history
  • Loading branch information
jsumners-nr committed Apr 24, 2024
1 parent c7cb11a commit a957304
Showing 1 changed file with 18 additions and 1 deletion.
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/special-agent@1.2.3"
}
],

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

0 comments on commit a957304

Please sign in to comment.