flipy
Version:
Flipy - A Wizard Plugin
32 lines (24 loc) • 740 B
JavaScript
module.exports = function(config) {
'use strict';
config.set({
autoWatch: true,
browsers: ['ChromeNoSandbox', 'Firefox'],
customLaunchers: { ChromeNoSandbox: { base: 'Chrome', flags: ['--no-sandbox'] } },
debug: true,
files: [
'node_modules/jquery/dist/jquery.min.js',
'node_modules/jasmine-jquery/lib/jasmine-jquery.js',
'spec/spec_helper.js',
'spec/fixtures/*.html',
'lib/*.css',
'lib/*.js',
'spec/javascripts/**/*.js'
],
frameworks: ['jasmine', 'fixture'],
logLevel: config.LOG_ERROR,
port: 9876,
preprocessors: { '**/*.html': ['html2js'] },
reporters: ['dots'],
singleRun: true
});
};