UNPKG
tentacle.js
Version:
latest (0.1.0)
0.1.0
0.0.14
Auto mock/inject dependencies for Angular tests
github.com/anilanar/tentacle.js
anilanar/tentacle.js
tentacle.js
/
karma-unit.conf.js
20 lines
(19 loc)
•
337 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module.exports =
function
(
config
)
{ config.
set
({
basePath
:
'./'
,
frameworks
: [
'mocha'
],
files
: [
'.tmp/test.js'
],
browsers
: [
'Firefox'
],
singleRun
:
true
,
reporters
: [
'mocha'
],
plugins
: [
'karma-mocha'
,
'karma-firefox-launcher'
,
'karma-mocha-reporter'
] }); };