Skip to content

Commit 246af02

Browse files
authoredJul 10, 2023
fix(docs): make example self-explanatory
Sometimes people get confused at what to feed the constructor. This will hopefully help that.
1 parent e0cbd59 commit 246af02

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed
 

‎README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,12 @@ docker run -it --rm webpagetest-api -k YOURAPIKEY test https://docs.webpagetest.
4343

4444
```javascript
4545
const WebPageTest = require("webpagetest");
46-
const wpt = new WebPageTest("www.webpagetest.org");
4746

48-
wpt.runTest("https://docs.webpagetest.org/api/integrations/", (err, data) => {
47+
const wptServer = "www.webpagetest.org";
48+
const wpt = new WebPageTest(wptServer);
49+
50+
const siteToTest = "https://docs.webpagetest.org/api/integrations/";
51+
wpt.runTest(siteToTest, (err, data) => {
4952
console.log(err || data);
5053
});
5154
```

0 commit comments

Comments
 (0)
Please sign in to comment.