File "karma.conf.js"

Full path: /home/kosmetik/public_html/elementor-pro/karma.conf.js
File size: 416 B
MIME-type: text/plain
Charset: utf-8

Download   Open   Edit   Advanced Editor   Back

const karmaCoreConfig = require( '../elementor/karma.conf' );

module.exports = function( config ) {
	karmaCoreConfig( config );

	// Set base path.
	config.basePath = __dirname + '/../elementor/';

	// Change qunit-tests to pro.
	Object.entries( config.files ).some( ( [ key, path ] ) => {
		if ( 'assets/js/qunit-tests.js' === path ) {
			config.files[ key ] = __dirname + '/' + path;
			return true;
		}
	} );
};