Skip to content
This repository was archived by the owner on Dec 28, 2023. It is now read-only.

Commit 4df9ba6

Browse files
dignifiedquirevojtajina
authored andcommitted
feat: Pass client configuration to `mocha.setup method.
Now all configuration in `client.config.mocha` is passed to the setup method of mocha. The default ui style of `'bdd'` is still set if nothing else is supplied. Also the reporter will be always overridden as this needs to be our custom one. Fixes #13.
1 parent 1a0b871 commit 4df9ba6

File tree

3 files changed

+55
-2
lines changed

3 files changed

+55
-2
lines changed

README.md

+22
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,28 @@ module.exports = function(config) {
3434
};
3535
```
3636

37+
If you want to pass configuration options directly to mocha you can
38+
do this in the following way
39+
40+
```js
41+
// karma.conf.js
42+
module.exports = function(config) {
43+
config.set({
44+
frameworks: ['mocha'],
45+
46+
files: [
47+
'*.js'
48+
],
49+
50+
client: {
51+
mocha: {
52+
ui: 'tdd'
53+
}
54+
}
55+
});
56+
};
57+
```
58+
3759
----
3860

3961
For more information on Karma see the [homepage].

src/adapter.js

+32
Original file line numberDiff line numberDiff line change
@@ -86,3 +86,35 @@ var createMochaStartFn = function(mocha) {
8686
mocha.run();
8787
};
8888
};
89+
90+
// Default configuration
91+
var mochaConfig = {
92+
reporter: createMochaReporterConstructor(window.__karma__),
93+
ui: 'bdd',
94+
globals: ['__cov*']
95+
};
96+
97+
// Pass options from client.mocha to mocha
98+
var createConfigObject = function(karma) {
99+
if (!karma.config || !karma.config.mocha) {
100+
return mochaConfig;
101+
}
102+
103+
// Copy all properties to mochaConfig
104+
for (var key in karma.config.mocha) {
105+
106+
// except for reporter
107+
if (key === 'reporter') {
108+
return;
109+
}
110+
111+
// and merge the globals if they exist.
112+
if (key === 'globals' && karma.config.mocha[key].concat === 'function') {
113+
return mochaConfig.globals.concat(karma.config.mocha[key]);
114+
}
115+
116+
mochaConfig[key] = karma.config.mocha[key];
117+
}
118+
return mochaConfig;
119+
};
120+

src/adapter.wrapper

+1-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,5 @@
44

55

66
window.__karma__.start = createMochaStartFn(window.mocha);
7-
window.mocha.setup({reporter: createMochaReporterConstructor(window.__karma__), ui: 'bdd',
8-
globals: ['__cov*']});
7+
window.mocha.setup(createConfigObject(window.__karma__));
98
})(window);

0 commit comments

Comments
 (0)