From c0fa1b7304bda47053accc07b421c72c722ef708 Mon Sep 17 00:00:00 2001 From: danbulant Date: Fri, 21 Feb 2020 16:43:09 +0100 Subject: [PATCH] Test index.js to test if deps installed --- test/index.js | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 test/index.js 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