UNPKG

node-red-node-email

Version:

Node-RED nodes to send and receive simple emails.

34 lines (23 loc) 445 B
"use strict"; /** * Karma configuration. */ module.exports = function (config) { config.set({ frameworks: ["mocha"], files: [ "test/**_test.js" ], preprocessors: { "test/**_test.js": ["webpack"] }, reporters: ["progress"], browsers: ["Chrome"], webpack: require("./webpack.config"), plugins: [ "karma-chrome-launcher", "karma-mocha", "karma-webpack" ] }); };