-
1
-
2
-
3
-
4
-
5
-
6
-
7
-
8
-
9
-
10
-
11
-
12
// Copyright 2026 Shota FUJI <pockawoooh@gmail.com>
// SPDX-License-Identifier: MIT
import http from "k6/http";
export const options = {
iterations: 10,
};
export default function() {
http.get("http://localhost:8080/foo.git");
}