Javascript – "Unexpected token, expected" when I tried to get value from .json file for k6 script JS
I have a JSON file with some values { "1": "socks", "2": "jeans", "3": "hoody" } I'm trying to get random value from this file import { sleep, group, check } from "k6"; import http from "k6/http"; import { checkCode…