hc-sdk
Version:
hc-sdk is a library for working with the HuaChain Horizon server.
35 lines (28 loc) • 666 B
JavaScript
module.exports = function(config) {
config.set({
frameworks: ['mocha', 'chai-as-promised', 'chai', 'sinon'],
browsers: ['Firefox'],
files: [
'dist/stellar-sdk.js',
'test/test-helper.js',
'test/unit/**/*.js',
'test/integration/server_test.js'
],
preprocessors: {
'test/**/*.js': ['webpack']
},
webpack: {
module: {
loaders: [
{ test: /\.js$/, exclude: /node_modules/, loader: 'babel-loader' },
{ test: /\.json$/, loader: 'json-loader' }
]
}
},
webpackMiddleware: {
noInfo: true
},
singleRun: true,
reporters: ['dots']
});
};