luhn-generator
Version:
A generator of numbers that passes the validation of Luhn algorithm or Luhn formula, also known as the 'modulus 10' or 'mod 10' algorithm
30 lines (17 loc) • 388 B
JavaScript
module.exports = function(config) {
config.set({
basePath: '',
frameworks: ['jasmine'],
files: ['spec/**/*.js', 'node_modules/axe-core/axe.js'],
exclude: [],
preprocessors: {},
reporters: ['progress'],
port: 9876,
colors: true,
logLevel: config.LOG_INFO,
autoWatch: true,
browsers: ['ChromeHeadless'],
singleRun: true,
concurrency: Infinity
});
};