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 #22 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 20, 2017
2 parents 9c2b9f8 + d67d39f commit b291c60
Show file tree
Hide file tree
Showing 11 changed files with 2,379 additions and 350 deletions.
51 changes: 51 additions & 0 deletions karma.conf.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
'use strict';

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

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

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

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

browsers: ['Chrome'],

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

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

autoWatch: true
});
};
20 changes: 0 additions & 20 deletions node.js

This file was deleted.

Loading

0 comments on commit b291c60

Please sign in to comment.