Test index.js to test if deps installed

This commit is contained in:
danbulant 2020-02-21 16:43:09 +01:00
parent bf6ec88807
commit c0fa1b7304

6
test/index.js Normal file
View file

@ -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!");
})