mirror of
https://github.com/zhigang1992/reactfire.git
synced 2026-04-24 04:25:40 +08:00
26 lines
447 B
JavaScript
26 lines
447 B
JavaScript
module.exports = function(config) {
|
|
config.set({
|
|
frameworks: ["jasmine"],
|
|
autowatch: false,
|
|
singleRun: true,
|
|
|
|
preprocessors: {
|
|
"../src/*.js": "coverage"
|
|
},
|
|
|
|
reporters: ["spec", "failed", "coverage"],
|
|
coverageReporter: {
|
|
reporters: [
|
|
{
|
|
type: "lcovonly",
|
|
dir: "coverage",
|
|
subdir: "."
|
|
},
|
|
{
|
|
type: "text-summary"
|
|
}
|
|
]
|
|
}
|
|
});
|
|
};
|