getLocations returns not all available locations

getLocations.php does not return the pro locations and the “physical” (Mac Mini in LA), for US I only get

  • Dulles
  • Salt Lake City
  • Los Angeles (non-physical)

For options, I was trying to set allLocations to true. It did not seem to make a difference.

Using the NodeJS module my code looks like this:

const wptServer = "www.webpagetest.org";
const wpt = new WebPageTest(wptServer, "my api key");
wpt.getLocations({allLocations: true}, (err, data) => {
  // ....
}

Any kind of help is highly appreciated!