/ script.js
script.js
1 import http from 'k6/http'; 2 3 export const options = { 4 duration: '10s', 5 }; 6 7 export default function() { 8 http.get('http://example.com'); 9 }
1 import http from 'k6/http'; 2 3 export const options = { 4 duration: '10s', 5 }; 6 7 export default function() { 8 http.get('http://example.com'); 9 }