Setup karma
This commit is contained in:
parent
e23721404b
commit
64db422e9d
71
karma.conf.js
Normal file
71
karma.conf.js
Normal file
|
@ -0,0 +1,71 @@
|
||||||
|
process.env.CHROME_BIN = "chromium-browser";
|
||||||
|
|
||||||
|
module.exports = function(config) {
|
||||||
|
config.set({
|
||||||
|
|
||||||
|
// base path that will be used to resolve all patterns (eg. files, exclude)
|
||||||
|
basePath: "",
|
||||||
|
|
||||||
|
|
||||||
|
// frameworks to use
|
||||||
|
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
|
||||||
|
frameworks: ["mocha", "browserify"],
|
||||||
|
|
||||||
|
|
||||||
|
// list of files / patterns to load in the browser
|
||||||
|
files: [
|
||||||
|
"test.js"
|
||||||
|
],
|
||||||
|
|
||||||
|
|
||||||
|
// preprocess matching files before serving them to the browser
|
||||||
|
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
|
||||||
|
preprocessors: {
|
||||||
|
"test.js": ["browserify"],
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
// list of files to exclude
|
||||||
|
exclude: [
|
||||||
|
],
|
||||||
|
|
||||||
|
|
||||||
|
// test results reporter to use
|
||||||
|
// possible values: "dots", "progress"
|
||||||
|
// available reporters: https://npmjs.org/browse/keyword/karma-reporter
|
||||||
|
reporters: ["mocha"],
|
||||||
|
|
||||||
|
|
||||||
|
// web server port
|
||||||
|
port: 9876,
|
||||||
|
|
||||||
|
|
||||||
|
// enable / disable colors in the output (reporters and logs)
|
||||||
|
colors: true,
|
||||||
|
|
||||||
|
|
||||||
|
// level of logging
|
||||||
|
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
|
||||||
|
logLevel: config.LOG_INFO,
|
||||||
|
|
||||||
|
|
||||||
|
// enable / disable watching file and executing tests whenever any file changes
|
||||||
|
autoWatch: false,
|
||||||
|
|
||||||
|
|
||||||
|
// start these browsers
|
||||||
|
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
|
||||||
|
browsers: ["Chromium", "Firefox"],
|
||||||
|
customLaunchers: {
|
||||||
|
Chromium: {
|
||||||
|
base: "Chrome",
|
||||||
|
flags: ["--no-sandbox"],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
|
|
||||||
|
// Continuous Integration mode
|
||||||
|
// if true, Karma captures browsers, runs the tests and exits
|
||||||
|
singleRun: true,
|
||||||
|
});
|
||||||
|
};
|
14
package.json
14
package.json
|
@ -5,7 +5,12 @@
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"browser": "browser.js",
|
"browser": "browser.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "mocha && jshint ."
|
"test": "mocha && xvfb-run -a karma start && jshint .",
|
||||||
|
"m": "mocha",
|
||||||
|
"k": "xvfb-run -a karma start",
|
||||||
|
"kc": "xvfb-run -a karma start --browsers Chromium",
|
||||||
|
"kf": "xvfb-run -a karma start --browsers Firefox",
|
||||||
|
"j": "jshint ."
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
|
@ -31,6 +36,13 @@
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"chai": "*",
|
"chai": "*",
|
||||||
"jshint": "*",
|
"jshint": "*",
|
||||||
|
"karma": "^0.12.28",
|
||||||
|
"karma-browserify": "^1.0.1",
|
||||||
|
"karma-chrome-launcher": "^0.1.7",
|
||||||
|
"karma-cli": "~0.0.4",
|
||||||
|
"karma-firefox-launcher": "^0.1.3",
|
||||||
|
"karma-mocha": "^0.1.10",
|
||||||
|
"karma-mocha-reporter": "^0.3.1",
|
||||||
"mocha": "*"
|
"mocha": "*"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user