diff options
| author | MeiMei <30769358+mei23@users.noreply.github.com> | 2021-05-05 19:02:30 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-05 19:02:30 +0900 |
| commit | 588b838debb6616cfaf597bbfa1a8eb00576dcb1 (patch) | |
| tree | a3c97f53f768aa34f09daa26b2f717f0a828b9f6 /test/utils.ts | |
| parent | 12.80.2 (diff) | |
| download | sharkey-588b838debb6616cfaf597bbfa1a8eb00576dcb1.tar.gz sharkey-588b838debb6616cfaf597bbfa1a8eb00576dcb1.tar.bz2 sharkey-588b838debb6616cfaf597bbfa1a8eb00576dcb1.zip | |
APIドキュメントが見れなくなっているのを修正など (#7500)
* Test api.json
* Fix typo
* Fix api-doc
Diffstat (limited to 'test/utils.ts')
| -rw-r--r-- | test/utils.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/utils.ts b/test/utils.ts index b0393ee192..193017e265 100644 --- a/test/utils.ts +++ b/test/utils.ts @@ -6,7 +6,7 @@ import * as childProcess from 'child_process'; import * as http from 'http'; import loadConfig from '../src/config/load'; -const port = loadConfig().port; +export const port = loadConfig().port; export const async = (fn: Function) => (done: Function) => { fn().then(() => { |