Skip to content

Commit 856ffde

Browse files
committed
Remove unnecessary imports
1 parent c0cc737 commit 856ffde

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

docs/sources/next/using-k6-browser/recommended-practices/hybrid-approach-to-performance.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,6 @@ To find out more information about injecting faults to your service, check out t
133133
import { browser } from 'k6/browser';
134134
import { check } from 'https://jslib.k6.io/k6-utils/1.5.0/index.js';
135135
import { ServiceDisruptor } from 'k6/x/disruptor';
136-
import http from 'k6/http';
137136

138137
const BASE_URL = __ENV.BASE_URL;
139138

docs/sources/next/using-k6-browser/recommended-practices/simulate-user-input-delay.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,6 @@ export default async function () {
107107

108108
```javascript
109109
import { browser } from 'k6/browser';
110-
import { check } from 'https://jslib.k6.io/k6-utils/1.5.0/index.js';
111110

112111
export const options = {
113112
scenarios: {
@@ -151,7 +150,6 @@ It's important to call this in a [Promise.all](https://developer.mozilla.org/en-
151150

152151
```javascript
153152
import { browser } from 'k6/browser';
154-
import { check } from 'https://jslib.k6.io/k6-utils/1.5.0/index.js';
155153

156154
export const options = {
157155
scenarios: {

0 commit comments

Comments
 (0)