jquery-comments
Version:
jQuery plugin for implementing an out-of-the-box commenting solution to any web application with an existing backend
28 lines (27 loc) • 643 B
JavaScript
module.exports = function(config) {
config.set({
basePath: "../",
files: [
"test/spec/*.js"
],
autoWatch: true,
frameworks: [
"jasmine-jquery",
"jasmine",
"sinon"
],
browsers: ["Chrome"],
plugins: [
"karma-chrome-launcher",
"karma-firefox-launcher",
"karma-jasmine",
"karma-jasmine-jquery",
"karma-sinon",
"karma-junit-reporter"
],
junitReporter: {
outputFile: "target/unit.xml",
suite: "unit"
}
});
};