Add wallaby support (for editor integration)

pull/29/head
HenryNguyen5 6 years ago
parent 7d3b7421bc
commit 2d0a24f944

@ -0,0 +1,26 @@
module.exports = function(wallaby) {
process.env.NODE_ENV = "development";
return {
name: "mymonero-core-js",
files: [
"cryptonote_utils/**/*.js",
"hostAPI/**/*.js",
"monero_utils/**/*.js",
"index.js",
],
filesWithNoCoverageCalculated: [
"cryptonote_utils/nacl-fast-cn.js",
"cryptonote_utils/biginteger.js",
"cryptonote_utils/sha3.js",
"cryptonote_utils/cryptonote_crypto_EMSCRIPTEN.js",
],
tests: ["./tests/**/*spec.js"],
testFramework: "jest",
env: { type: "node", runner: "node" },
};
};
Loading…
Cancel
Save