Skip to content

Commit cbca938

Browse files
remove unused imports from code samples
1 parent 2bd6f26 commit cbca938

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/data/markdown/docs/05 Examples/02 Tutorials/01 Get started with k6/300 Analyze results.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ Since this example simulates a human user rather than an API call, it has a slee
183183
184184
```javascript
185185
import http from "k6/http";
186-
import { check, group, sleep } from "k6";
186+
import { group, sleep } from "k6";
187187
188188
//set URL as variable
189189
const baseUrl = "https://test.k6.io";
@@ -218,8 +218,7 @@ Name one group `Contacts flow` and another `Coinflip game`.
218218
```javascript
219219
//import necessary modules
220220
import http from "k6/http";
221-
import { check, group, sleep } from "k6";
222-
import { Counter, Rate, Trend } from "k6/metrics";
221+
import { group, sleep } from "k6";
223222
224223
//set baseURL
225224
const baseUrl = "https://test.k6.io";

0 commit comments

Comments
 (0)