mirror of
https://github.com/nasa/openmct.git
synced 2024-12-19 21:27:52 +00:00
311ad0b87a
* fix: specify .nyc_output path as custom config setting * fix: coverage for mobile suite * fix: pathing in playwright configs
32 lines
643 B
JavaScript
32 lines
643 B
JavaScript
/*
|
|
This file extends the webpack.dev.mjs config to add babel istanbul coverage.
|
|
OpenMCT Continuous Integration servers use this configuration to add code coverage
|
|
information to pull requests.
|
|
*/
|
|
|
|
import config from './webpack.dev.mjs';
|
|
|
|
config.devtool = 'source-map';
|
|
config.devServer.hot = false;
|
|
|
|
config.module.rules.push({
|
|
test: /\.js$/,
|
|
exclude: /(Spec\.js$)|(node_modules)/,
|
|
use: {
|
|
loader: 'babel-loader',
|
|
options: {
|
|
retainLines: true,
|
|
plugins: [
|
|
[
|
|
'babel-plugin-istanbul',
|
|
{
|
|
extension: ['.js', '.vue']
|
|
}
|
|
]
|
|
]
|
|
}
|
|
}
|
|
});
|
|
|
|
export default config;
|