diff --git a/.gitignore b/.gitignore index 2530f7eb..ec0acfa4 100644 --- a/.gitignore +++ b/.gitignore @@ -16,6 +16,7 @@ *.o obj/* bin/newcoind - newcoind +# Ignore locally installed node_modules +node_modules diff --git a/test/buster.js b/test/buster.js new file mode 100644 index 00000000..5dd49ec7 --- /dev/null +++ b/test/buster.js @@ -0,0 +1,9 @@ +var config = module.exports; + +config["Newcoin tests"] = { + rootPath: "../", + environment: "node", + tests: [ + "test/*-test.js" + ] +}