UNPKG

@financial-times/o-ads

Version:

This package contains the core functionality used by the FT in providing ads across all of its sites. This includes ft.com, howtospendit.com, ftadviser.com and other specialist titles.

80 lines (71 loc) 2.1 kB
/* eslint no-console: 0 */ 'use strict'; //eslint-disable-line // if you want a different local configuration create a file called karma.local.js // the file should export a function that takes the current options object and // returns an amended one e.g. // module.exports = function (options) { // var options.test = "it works!"; // return options; // } const BowerResolvePlugin = require('bower-resolve-webpack-plugin'); let options = { basePath: '', autoWatch: true, singleRun: false, frameworks: ['qunit'], files: [ 'https://code.jquery.com/jquery-1.7.2.min.js', 'http://sinonjs.org/releases/sinon-1.10.3.js', 'http://sinonjs.org/releases/sinon-timers-ie-1.10.3.js', 'test/qunit/setup.js', { pattern: 'test/qunit/mocks/*', included: false }, 'test/qunit/*.test.js', ], customLaunchers: { Chrome_with_flags: { base: 'Chrome', flags: ['--disable-web-security', '--no-sandbox', '--no-first-run'] } }, browsers: ['Chrome_with_flags'], webpack: { resolve: { plugins: [new BowerResolvePlugin()], modules: ['bower_components', 'node_modules'], descriptionFiles: ['bower.json', 'package.json'], mainFields: ['browser', 'main'], mainFiles: ['index', 'main'], extensions: ['.js', '.json'] }, mode: 'development' }, reporters: ['progress'], preprocessors: { 'test/qunit/setup.js': ['webpack'], 'test/qunit/main.test.js': ['webpack'], 'test/qunit/api.test.js': ['webpack'] } }; // In the CI environment set an environment variable CI = 'true' if (process.env.CI === 'true') { console.log('CI options activated'); // CI options go here options.singleRun = true; options.autoWatch = false; } else { //options for local go here } if (process.env.CIRCLECI) { } // eslint-disable-line no-empty try { options = require('./karma.local.js')(options); console.log('Local config loaded'); } catch (err) { if (err.code === 'MODULE_NOT_FOUND') { console.log('No local config found'); } else { console.error('%s:%s', err.code, err.toString().replace('Error:', '')); } } module.exports = function(config) { config.set(options); };