21 lines
416 B
JavaScript
21 lines
416 B
JavaScript
|
/**
|
||
|
* External dependencies
|
||
|
*/
|
||
|
const path = require( 'path' );
|
||
|
/**
|
||
|
* Internal dependencies
|
||
|
*/
|
||
|
const getTestConfig = require( './test-config' );
|
||
|
const getAppRoot = require( './app-root' );
|
||
|
|
||
|
const getAppName = () => {
|
||
|
const testConfig = getTestConfig();
|
||
|
if ( testConfig.appName ) {
|
||
|
return testConfig.appName;
|
||
|
}
|
||
|
const appRoot = getAppRoot();
|
||
|
return path.basename( appRoot );
|
||
|
};
|
||
|
|
||
|
module.exports = getAppName;
|