33 lines
1.1 KiB
JavaScript
33 lines
1.1 KiB
JavaScript
/*
|
|
* Copyright (C) 2022 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
const webpackConfig = require('./webpack.config.common');
|
|
delete webpackConfig.entry;
|
|
delete webpackConfig.output;
|
|
|
|
module.exports = (config) => {
|
|
config.set({
|
|
frameworks: ['jasmine', 'webpack'],
|
|
plugins: ['karma-webpack', 'karma-chrome-launcher', 'karma-jasmine', 'karma-sourcemap-loader'],
|
|
files: [{pattern: 'src/main_component_test.ts', watched: false}],
|
|
preprocessors: {
|
|
'src/main_component_test.ts': ['webpack', 'sourcemap'],
|
|
},
|
|
singleRun: true,
|
|
browsers: ['ChromeHeadless'],
|
|
webpack: webpackConfig,
|
|
});
|
|
};
|