-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma.conf.js
31 lines (30 loc) · 921 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
"use strict";
module.exports = function (config) {
config.set({
basePath: "./",
frameworks: ["jasmine"],
client: {
jasmine: {
spec_files: [
// "test/spec/*/**/*spec.js",
],
},
},
browsers: ["Chrome"],
files: [
{pattern: 'test/*/**/*/data/*.json', watched: true, included: false, served: true, nocache: true},
"bower_components/angular/angular.js",
"bower_components/angular-aria/angular-aria.js",
"bower_components/angular-animate/angular-animate.js",
"bower_components/angular-cookies/angular-cookies.js",
"bower_components/angular-material/angular-material.js",
"bower_components/angular-mocks/angular-mocks.js",
"src/appbuilder3.js",
"src/**/*.js",
"test/helpers/readJson.fn.js",
"test/spec/*/**/*.fn.js",
"test/spec/*/**/*spec.js",
// "test/spec/*/**/*.js",
],
});
};