validaty
Version:
jQuery Validaty - A Validation Plugin
22 lines (18 loc) • 450 B
JavaScript
module.exports = function(config) {
'use strict';
config.set({
browsers: ['Chrome', 'Firefox'],
debug: true,
files: [
'node_modules/jquery/dist/jquery.min.js',
'lib/*.css',
'lib/*.js',
'spec/fixtures/*.html',
'spec/spec_helper.js',
'spec/javascripts/**/*.js'
],
frameworks: ['jasmine', 'fixture'],
preprocessors: { '**/*.html': ['html2js'] },
singleRun: true,
});
};