mirror of
https://github.com/nasa/openmct.git
synced 2025-03-20 11:05:19 +00:00
* Fix timer test * be explicit about the warnings text * add full suite to CI to enable CircleCI Checks * add back in devtool=false for CI env so firefox tests run * add framework suite * Don't install webpack HMR in CI * Fix playwright version installs * exclude HMR if running tests in any environment - use NODE_ENV=TEST to exclude webpack HMR - deparameterize some of the playwright configs * use lower-case 'test' * timer hover fix * conditionally skip for firefox due to missing console events * increase timeouts to give time for mutation * no need to close save banner * remove devtool setting * revert * update snapshots * disable video to save some resources * use one worker * more timeouts :) * Remove `browser.close()` and `page.close()` as it was breaking other tests * Remove unnecessary awaits and fix func call syntax * Fix image reset test * fix restrictedNotebook tests * revert playwright-ci.config settings * increase timeout for polling imagery test * remove unnecessary waits * disable notebook lock test for chrome-beta as its unreliable - remove some unnecessary 'wait for save banner' logic - remove unused await - mark imagery test as slow in chrome-beta * LINT!! *shakes fist* * don't run full e2e suite per commit * disable video in all configs * add flakey zoom comment * exclude webpack HMR in non-development modes Co-authored-by: Jesse Mazzella <jesse.d.mazzella@nasa.gov> Co-authored-by: Jesse Mazzella <ozyx@users.noreply.github.com>
44 lines
1.3 KiB
JavaScript
44 lines
1.3 KiB
JavaScript
// This file extends the webpack.dev.js config to add istanbul coverage
|
|
// instrumentation using babel-plugin-istanbul (see babel.coverage.js)
|
|
|
|
const config = require('./webpack.dev');
|
|
const path = require('path');
|
|
const vueLoaderRule = config.module.rules.find(r => r.use === 'vue-loader');
|
|
// eslint-disable-next-line no-undef
|
|
const CI = process.env.CI === 'true';
|
|
|
|
config.devtool = CI ? false : undefined;
|
|
|
|
vueLoaderRule.use = {
|
|
loader: 'vue-loader'
|
|
// Attempt to use Babel with babel-plugin-istanbul
|
|
|
|
// TODO The purpose of this was to try to add coverage to JS expressions
|
|
// inside `<template>` markup, but it seems to add only coverage inside
|
|
// `<script>` tags.
|
|
// Issue: https://github.com/nasa/openmct/issues/4973
|
|
//
|
|
// options: {
|
|
// compiler: require('vue-template-babel-compiler'),
|
|
// compilerOptions: {
|
|
// babelOptions: require('./babel.coverage')
|
|
// }
|
|
// }
|
|
};
|
|
|
|
config.module.rules.push({
|
|
test: /\.js$/,
|
|
// test: /(\.js$)|(\?vue&type=template)/,
|
|
// exclude: /node_modules(?!.*\.vue)/,
|
|
exclude: /(Spec\.js$)|(node_modules)/,
|
|
use: {
|
|
loader: 'babel-loader',
|
|
options: {
|
|
// eslint-disable-next-line no-undef
|
|
configFile: path.resolve(process.cwd(), 'babel.coverage.js')
|
|
}
|
|
}
|
|
});
|
|
|
|
module.exports = config;
|