forked from vicalejuri/iching
-
Notifications
You must be signed in to change notification settings - Fork 0
/
karma.conf.js
95 lines (92 loc) · 2.41 KB
/
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
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
"use strict";
/* eslint-disable no-alert, no-console */
let path = require("path");
let cwd = process.cwd()
module.exports = function(config) {
config.set({
basePath: "",
frameworks: ["jasmine"],
files: [
//'test/helpers/pack/**/*.js',
//'test/helpers/react/**/*.js',
//'test/spec/components/**/*.js',
"test/**/*.js"
],
preprocessors: {
"test/**/*.js": ["webpack", "sourcemap"],
"test/spec/components/**/*.js": ["webpack", "sourcemap"],
"test/spec/components/**/*.jsx": ["webpack", "sourcemap"]
},
webpack: {
cache: false,
devtool: 'inline-source-map',
module: {
loaders: [
{
test: /\.gif/,
loader: "url-loader?limit=10000&mimetype=image/gif"
},
{
test: /\.jpg/,
loader: "url-loader?limit=10000&mimetype=image/jpg"
},
{
test: /\.png/,
loader: "url-loader?limit=10000&mimetype=image/png"
},
{
test: /\.(js|jsx)$/,
loader: "babel-loader",
exclude: /node_modules/
},
{
test: /\.scss/,
loader: "style-loader!css-loader!sass-loader?outputStyle=expanded"
},
{
test: /\.css$/,
loader: "style-loader!css-loader"
},
{
test: /\.woff/,
loader: "url-loader?limit=10000&mimetype=application/font-woff"
},
{
test: /\.woff2/,
loader: "url-loader?limit=10000&mimetype=application/font-woff2"
}
]
},
resolve: {
alias: {
styles: path.join(cwd, "./src/styles/"),
components: path.join(cwd, "./src/components/"),
src: path.join(cwd, "./src/"),
helpers: path.join(cwd, "./test/helpers/")
}
}
},
webpackMiddleware: {
noInfo: true,
stats: {
colors: true
}
},
exclude: [],
port: 9090,
logLevel: config.LOG_INFO,
colors: true,
autoWatch: false,
browsers: ["PhantomJS"],
reporters: ["spec"],
captureTimeout: 60000,
singleRun: true,
plugins: [
require("karma-spec-reporter"),
require("karma-webpack"),
require("karma-sourcemap-loader"),
require("karma-jasmine"),
require("karma-phantomjs-launcher")
]
});
};