diff --git a/test/index.js b/test/index.js new file mode 100644 index 0000000..98af250 --- /dev/null +++ b/test/index.js @@ -0,0 +1,6 @@ +const got = require("got"); + +console.log("Trying to make request..."); +got("http://google.com").then((r) => { + console.log("Got request working!"); +}) \ No newline at end of file