From 9abb108b5e6632302aa6844cb8d28c4a090ab1cc Mon Sep 17 00:00:00 2001 From: syuilo Date: Tue, 17 Jan 2017 08:37:24 +0900 Subject: [BREAKING CHANGE] テスト時の設定ファイルを分けるように MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See CHANGELOG for more details --- src/config.ts | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'src/config.ts') diff --git a/src/config.ts b/src/config.ts index 342e2db78b..d26ce5656d 100644 --- a/src/config.ts +++ b/src/config.ts @@ -6,7 +6,19 @@ import * as fs from 'fs'; import * as yaml from 'js-yaml'; import * as isUrl from 'is-url'; -export const path = (global as any).MISSKEY_CONFIG_PATH ? (global as any).MISSKEY_CONFIG_PATH : `${__dirname}/../.config/config.yml`; +/** + * Path of configuration directory + */ +const dir = `${__dirname}/../.config`; + +/** + * Path of configuration file + */ +export const path = (global as any).MISSKEY_CONFIG_PATH + ? (global as any).MISSKEY_CONFIG_PATH + : process.env.NODE_ENV == 'test' + ? `${dir}/test.yml` + : `${dir}/default.yml`; /** * ユーザーが設定する必要のある情報 -- cgit v1.2.3-freya