karma.conf.js
4.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
/* global process, */
'use strict';
var path = require('path');
var conf = require('./gulp/conf');
var _ = require('lodash');
var wiredep = require('wiredep');
var pathSrcHtml = [
path.join('./src/app/**/*.html')
];
var glob = require("glob");
var testFiles = glob.sync("./src/**/*.[sS]pec.ts");
function listFiles() {
var wiredepOptions = _.extend({}, conf.wiredep, {
dependencies: true,
devDependencies: true
});
var patterns = [].concat(wiredep(wiredepOptions).js)
.concat([
'./src/commons.js',
'./src/noosfero.js',
'./src/noosfero-specs.js'
]
//[
//path.join(conf.paths.src, 'common.js'),
//, path.join(conf.paths.src, 'index.ts')
//path.join(conf.paths.src, 'test.js')
// path.join(conf.paths.src, '/app/**/*.module.js'),
// path.join(conf.paths.src, '/app/**/*.js'),
// path.join(conf.paths.src, '/**/*.spec.js'),
// path.join(conf.paths.src, '/**/*.mock.js')
//]
)
.concat(pathSrcHtml);
var files = patterns.map(function (pattern) {
return {
pattern: pattern
};
});
files.push({
pattern: path.join(conf.paths.src, '/assets/**/*'),
included: false,
served: true,
watched: false
});
files.push({
pattern: path.join(conf.paths.src, '/test.js.map'),
included: false,
served: true
});
return files;
}
var webpackConfig = require("./webpack.config.js");
module.exports = function (config) {
var configuration = {
files: listFiles(),
singleRun: false,
autoWatch: true,
colors: true,
logLevel: config.LOG_INFO,
ngHtml2JsPreprocessor: {
stripPrefix: conf.paths.src + '/',
moduleName: 'templates'
},
frameworks: ['jasmine', 'phantomjs-shim'],//, 'angular-filesort'],
angularFilesort: {
whitelist: [path.join(conf.paths.src, '/**/!(*.html|*.spec|*.mock).js')]
},
browsers: ['PhantomJS'],
/* webpack: _.merge({
}, webpackConfig, {
devtool: 'inline-source-map'
}),
webpackServer: {
quite: true
},*/
plugins: [
// require('karma-webpack'),
'karma-chrome-launcher',
'karma-phantomjs-launcher',
'karma-angular-filesort',
'karma-webpack',
'karma-phantomjs-shim',
'karma-coverage',
'karma-jasmine',
'karma-spec-reporter',
'karma-ng-html2js-preprocessor',
'karma-sourcemap-loader'
],
coverageReporter: {
type: 'html',
dir: 'coverage/'
},
reporters: ['spec', "coverage"],
proxies: {
'/assets/': path.join('/base/', conf.paths.src, '/assets/')
}
};
// This is the default preprocessors configuration for a usage with Karma cli
// The coverage preprocessor is added in gulp/unit-test.js only for single tests
// It was not possible to do it there because karma doesn't let us now if we are
// running a single test or not
configuration.preprocessors = {
'src/**/*.js': ['sourcemap'],
'src/**/*.ts': ['sourcemap']
};
// 'src/**/*.js': ['sourcemap'],
// 'src/**/*.[sS]pec.ts': ['sourcemap']
// };
pathSrcHtml.forEach(function (path) {
configuration.preprocessors[path] = ['ng-html2js'];
});
// This block is needed to execute Chrome on Travis
// If you ever plan to use Chrome and Travis, you can keep it
// If not, you can safely remove it
// https://github.com/karma-runner/karma/issues/1144#issuecomment-53633076
if (configuration.browsers[0] === 'Chrome' && process.env.TRAVIS) {
configuration.customLaunchers = {
'chrome-travis-ci': {
base: 'Chrome',
flags: ['--no-sandbox']
}
};
configuration.browsers = ['chrome-travis-ci'];
}
config.set(configuration);
};