UNPKG

moment-recur

Version:

A momentjs plugin for matching and generating recurring dates.

26 lines (25 loc) 627 B
// Karma configuration // http://karma-runner.github.io/0.10/config/configuration-file.html module.exports = function (config) { config.set({ basePath: '', frameworks: ['jasmine'], files: [ 'bower_components/moment/moment.js', 'bower_components/moment-timezone/builds/moment-timezone-with-data.js', 'moment-recur.js', 'tests/spec/*.js', ], exclude: [], port: 8080, logLevel: config.LOG_INFO, autoWatch: true, browsers: ['Chrome'], frameworks: ['jasmine'], plugins: [ 'karma-jasmine', 'karma-chrome-launcher' ], singleRun: false }); };