Skip to content
This repository has been archived by the owner on Jan 25, 2018. It is now read-only.

Commit

Permalink
Merge pull request #19 from metal/release/v3.0.0
Browse files Browse the repository at this point in the history
3.0.0
  • Loading branch information
jbalsas authored Oct 25, 2017
2 parents 4e2b61c + b117eac commit 885c81c
Show file tree
Hide file tree
Showing 3 changed files with 2,565 additions and 407 deletions.
52 changes: 52 additions & 0 deletions karma.conf.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
'use strict';

module.exports = function(config) {
config.set({
frameworks: ['browserify', 'chai', 'mocha', 'sinon'],

files: [
{
pattern: 'test/**/*.js',
watched: false,
included: true,
served: true
}
],

plugins: [
'karma-browserify',
'karma-chai',
'karma-chrome-launcher',
'karma-mocha',
'karma-sinon'
],

preprocessors: {
'test/**/*.js': ['browserify']
},

browsers: ['Chrome'],

browserify: {
debug: true,
transform: [
[
'babelify',
{
presets: [
'env'
]
}
]
]
},

client: {
mocha: {
timeout: 4000
}
},

autoWatch: true
});
};
Loading

0 comments on commit 885c81c

Please sign in to comment.