jquery.alphanum
Version:
Restrict what characters that may be entered into text fields. Supports alphanumeric, alphabetic or numeric. Easy to use. Fully customisable. Cross Browser compatible.
35 lines (29 loc) • 963 B
JavaScript
// Note some browser launchers should be installed before using karma start.
// For example:
// $ npm install karma-firefox-launcher
// $ karma start --browser=Firefox
// See http://karma-runner.github.io/0.8/config/configuration-file.html
module.exports = function(config) {
config.set({
basePath: '',
frameworks: ['qunit'],
logLevel: config.LOG_INFO,
port: 9876,
// list of files / patterns to load in the browser
files: [
'lib/jquery.js',
'jquery.alphanum.js',
'lib/qunit-extras.js',
'unit/*.js'
],
// Test results reporter to use
// https://npmjs.org/browse/keyword/karma-reporter
reporters: ['progress'],
// start these browsers
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
browsers: ['PhantomJS'],
// Continuous Integration mode
// if true, Karma captures browsers, runs the tests and exits
singleRun: false
});
};