* ci: playwright report * chore: update playwright report location * ci: trace file only on failure * ci: reduce test timeout * test: up the rateLimit
38 lines
1.0 KiB
TypeScript
38 lines
1.0 KiB
TypeScript
import { Config, SanitizedConfig } from '../src/config/types';
|
|
import { buildConfig as buildPayloadConfig } from '../src/config/build';
|
|
|
|
export function buildConfig(config?: Partial<Config>): Promise<SanitizedConfig> {
|
|
const [name] = process.argv.slice(2);
|
|
const baseConfig: Config = {
|
|
telemetry: false,
|
|
rateLimit: {
|
|
window: 15 * 60 * 100, // 15min default,
|
|
max: 9999999999,
|
|
},
|
|
...config,
|
|
};
|
|
|
|
baseConfig.admin = {
|
|
...(baseConfig.admin || {}),
|
|
webpack: (webpackConfig) => {
|
|
const existingConfig = typeof config?.admin?.webpack === 'function'
|
|
? config.admin.webpack(webpackConfig)
|
|
: webpackConfig;
|
|
return {
|
|
...existingConfig,
|
|
name,
|
|
cache: process.env.NODE_ENV === 'test' ? {
|
|
type: 'memory',
|
|
} : existingConfig.cache,
|
|
};
|
|
},
|
|
};
|
|
|
|
if (process.env.PAYLOAD_DISABLE_ADMIN === 'true') {
|
|
if (typeof baseConfig.admin !== 'object') baseConfig.admin = {};
|
|
baseConfig.admin.disable = true;
|
|
}
|
|
|
|
return buildPayloadConfig(baseConfig);
|
|
}
|