forked from hodgepodgers/ng-intl-tel-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma.conf.js
35 lines (27 loc) · 826 Bytes
/
karma.conf.js
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
module.exports = function (config) {
config.set({
basePath: '',
frameworks: ['jasmine', 'sinon'],
browsers: ['PhantomJS'],
reporters: 'dots',
autoWatch: true,
singleRun: true,
plugins: [
'karma-phantomjs-launcher',
'karma-jasmine',
'karma-sinon'
],
files: [
'bower_components/jquery/dist/jquery.js',
'bower_components/angularjs/angular.js',
'bower_components/angular-mocks/angular-mocks.js',
'bower_components/intl-tel-input/build/js/intlTelInput.js',
'bower_components/intl-tel-input/build/js/utils.js',
'ng-intl-tel-input.module.js',
'ng-intl-tel-input.provider.js',
'ng-intl-tel-input.directive.js',
'node_modules/phantomjs-polyfills/polyfills/function-bind-polyfill.js',
'*.spec.js'
]
});
};