mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-19 17:14:57 +00:00
* add animation on show and hide of results make the style similar to the other material 2 menu fix issue popup always stays on the screen fix Search does not collapse if its input is focused * minor code style issues * minors fix and test fix * fix app.config.json error in test * update beta10 mat-menu-base method * karma configuration all
133 lines
4.4 KiB
JavaScript
133 lines
4.4 KiB
JavaScript
const webpackCoverage = require('./webpack.coverage');
|
|
const helpers = require('./helpers');
|
|
|
|
module.exports = function (config) {
|
|
var _config = {
|
|
basePath: '../ng2-components',
|
|
|
|
frameworks: ['jasmine-ajax', 'jasmine'],
|
|
|
|
files: [
|
|
{pattern: './node_modules/hammerjs/hammer.min.js', included: true, watched: false},
|
|
{
|
|
pattern: './node_modules/@angular/material/prebuilt-themes/indigo-pink.css',
|
|
included: true,
|
|
watched: false
|
|
},
|
|
|
|
//diagrams
|
|
{pattern: './node_modules/chart.js/dist/Chart.js', included: true, watched: false},
|
|
{pattern: './node_modules/alfresco-js-api/dist/alfresco-js-api.min.js', included: true, watched: false},
|
|
{pattern: './node_modules/raphael/raphael.min.js', included: true, watched: false},
|
|
{pattern: './node_modules/moment/min/moment.min.js', included: true, watched: false},
|
|
|
|
{pattern: './node_modules/ng2-translate/ng2-translate.js', included: false, watched: false},
|
|
{
|
|
pattern: './node_modules/ng2-charts/bundles/ng2-charts.umd.js',
|
|
included: false,
|
|
served: true,
|
|
watched: false
|
|
},
|
|
|
|
// pdf-js
|
|
{pattern: './node_modules/pdfjs-dist/build/pdf.js', included: true, watched: false},
|
|
{pattern: './node_modules/pdfjs-dist/build/pdf.worker.js', included: true, watched: false},
|
|
{pattern: './node_modules/pdfjs-dist/web/pdf_viewer.js', included: true, watched: false},
|
|
|
|
{pattern: config.component + '/karma-test-shim.js', watched: false},
|
|
{pattern: './ng2-**/src/assets/**/*.*', included: false, served: true, watched: false},
|
|
{pattern: './ng2-**/src/**/*.ts', included: false, served: true, watched: false},
|
|
{pattern: './config/app.config.json', included: false, served: true, watched: false}
|
|
],
|
|
|
|
webpack: webpackCoverage(config),
|
|
|
|
webpackMiddleware: {
|
|
noInfo: true,
|
|
stats: {
|
|
chunks: false
|
|
}
|
|
},
|
|
|
|
port: 9876,
|
|
|
|
proxies: {
|
|
'/app.config.json': '/base/config/app.config.json'
|
|
},
|
|
|
|
// level of logging
|
|
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
|
|
logLevel: config.LOG_INFO,
|
|
|
|
colors: true,
|
|
|
|
autoWatch: false,
|
|
|
|
captureTimeout: 1800000,
|
|
browserDisconnectTimeout: 1800000,
|
|
browserDisconnectTolerance: 10,
|
|
browserNoActivityTimeout: 3000000,
|
|
|
|
browsers: ['Chrome'],
|
|
|
|
customLaunchers: {
|
|
Chrome_travis_ci: {
|
|
base: 'Chrome',
|
|
flags: ['--no-sandbox']
|
|
},
|
|
Chrome_headless: {
|
|
base: 'Chrome',
|
|
flags: [
|
|
'--no-sandbox',
|
|
'--headless',
|
|
'--disable-gpu',
|
|
'--remote-debugging-port=9222'
|
|
]
|
|
}
|
|
},
|
|
|
|
// Karma plugins loaded
|
|
plugins: [
|
|
require('../node_modules/karma-jasmine'),
|
|
require('../node_modules/karma-coverage'),
|
|
require('../node_modules/karma-sourcemap-loader'),
|
|
require('../node_modules/karma-jasmine-ajax'),
|
|
require('../node_modules/karma-chrome-launcher'),
|
|
require('../node_modules/karma-mocha-reporter'),
|
|
require('../node_modules/karma-webpack'),
|
|
require('../node_modules/karma-jasmine-html-reporter')
|
|
],
|
|
|
|
webpackServer: {
|
|
noInfo: true
|
|
},
|
|
|
|
// Coverage reporter generates the coverage
|
|
reporters: ['mocha', 'coverage', 'kjhtml'],
|
|
|
|
preprocessors: {
|
|
'**/karma-test-shim.js': ['webpack'],
|
|
'(ng2-alfresco|ng2-activiti)/src/**/!(*spec|index|*mock|*model|*event).js': 'coverage'
|
|
},
|
|
|
|
coverageReporter: {
|
|
includeAllSources: true,
|
|
dir: './coverage/' + config.component + '/',
|
|
subdir: 'report',
|
|
reporters: [
|
|
{type: 'text'},
|
|
{type: 'text-summary'},
|
|
{type: 'json', file: 'coverage-final.json'},
|
|
{type: 'html'},
|
|
{type: 'lcov'}
|
|
]
|
|
}
|
|
};
|
|
|
|
if (process.env.TRAVIS) {
|
|
config.browsers = ['Chrome_travis_ci'];
|
|
}
|
|
|
|
config.set(_config);
|
|
};
|