質問編集履歴
1
試したことの追加
test
CHANGED
File without changes
|
test
CHANGED
@@ -110,7 +110,27 @@
|
|
110
110
|
|
111
111
|
|
112
112
|
|
113
|
+
③`test.yml`の①と同じ場所に`npm install @types/jest@26.0.0`のようにバージョンを指定して追加→結果は変わらずエラーメッセージも同じ
|
114
|
+
|
115
|
+
|
116
|
+
|
117
|
+
④`test.yml`の①と同じ場所に`npm install ts-jest@26.0.0`のようにバージョンを指定して追加→結果は変わらなかったがエラーメッセージに下記のメッセージが追加された
|
118
|
+
|
119
|
+
|
120
|
+
|
121
|
+
```
|
122
|
+
|
123
|
+
ts-jest[versions] (WARN) Version 4.1.5 of typescript installed has not been tested with ts-jest.
|
124
|
+
|
125
|
+
If you're experiencing issues, consider using a supported version (>=3.8.0 <4.0.0-0).
|
126
|
+
|
127
|
+
Please do not report issues in ts-jest if you are using unsupported versions.
|
128
|
+
|
129
|
+
```
|
130
|
+
|
131
|
+
|
132
|
+
|
113
|
-
|
133
|
+
⑤CIとは関係なく普通に`npm test`を実行してみる→今までは通っていたのに、今回になって`sh: jest: command not found`というエラーでそもそもテストができなくなった。
|
114
134
|
|
115
135
|
|
116
136
|
|