Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -261,7 +261,7 @@ To see how tags affect your test-result output, refer to the [k6 results output
For extra organization, you can use *groups* to organize a load script by functions.
You can also nest groups for BDD-style testing.

All metrics emitted in a group have the tag `group` with a value of all wrapping group names separated by `::` (two colons).
All metrics emitted in a [group](/javascript-api/k6/group/) have the tag `group` with a value of all wrapping group names separated by `::` (two colons).
The root group uses the name '' (empty string).
If you have a single group named `cool requests`, the actual value of the `group` is `::cool requests`.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ k6 proporciona dos APIs de scripting para ayudarle durante el análisis y visual

## Groups

Los grupos son opcionales, y permiten "agrupar" su script de carga. Los grupos pueden ser anidados, y permiten el estilo BDD de pruebas.
Los [grupos](/javascript-api/k6/group/) son opcionales, y permiten "agrupar" su script de carga. Los grupos pueden ser anidados, y permiten el estilo BDD de pruebas.

<CodeGroup labels={["groups.js"]} lineNumbers={[true]}>

Expand Down