質問編集履歴

1

軽微な修正

2020/05/12 05:19

投稿

AInoue
AInoue

スコア17

test CHANGED
File without changes
test CHANGED
@@ -10,6 +10,20 @@
10
10
 
11
11
  ``` js
12
12
 
13
+ var Redmine = require('node-redemine');
14
+
15
+ const hostName = 'host名';
16
+
17
+ const config = {
18
+
19
+ aiKey: 'apikey';
20
+
21
+ }
22
+
23
+ var redemine = new Redmine(hostName, config);
24
+
25
+ ...
26
+
13
27
  function getFromClient(req, res) {
14
28
 
15
29
 
@@ -198,4 +212,8 @@
198
212
 
199
213
 
200
214
 
201
- ```
215
+ ```
216
+
217
+
218
+
219
+ 本当であれば、createUser関数を呼び出した時点で、errが発生し、catchするはずなのですが、その結果をcatchできておらず、最後に出力されています。