2022-02-04 18:17:54 +00:00
|
|
|
/**
|
|
|
|
* External dependencies
|
|
|
|
*/
|
|
|
|
const path = require( 'path' );
|
|
|
|
|
|
|
|
const buildPath = ( filename ) => `installFiles${path.sep}${filename}`;
|
|
|
|
|
2021-12-08 17:47:30 +00:00
|
|
|
module.exports = {
|
2022-02-04 18:17:54 +00:00
|
|
|
testSpecs: buildPath( 'scaffold-tests.json' ),
|
|
|
|
defaultJson: buildPath( 'default-test-config.json' ),
|
|
|
|
initializeSh: buildPath( 'initialize.sh.default' ),
|
2021-12-08 17:47:30 +00:00
|
|
|
};
|