You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
422 B
33 lines
422 B
module.exports = config => {
|
|
|
|
config.set({
|
|
|
|
basePath: __dirname,
|
|
|
|
frameworks: ['jasmine'],
|
|
|
|
browsers: ['Chrome', 'Safari', 'Firefox'],
|
|
|
|
files: [
|
|
'index.js', {
|
|
pattern: 'data/*',
|
|
included: false
|
|
},
|
|
],
|
|
|
|
preprocessors: {
|
|
'index.js': ['webpack']
|
|
},
|
|
|
|
proxies: {
|
|
'/data/': '/base/data/'
|
|
},
|
|
|
|
webpack: {
|
|
mode: 'development'
|
|
},
|
|
|
|
});
|
|
|
|
};
|