質問編集履歴
1
試したことの追加
title
CHANGED
File without changes
|
body
CHANGED
@@ -54,6 +54,16 @@
|
|
54
54
|
|
55
55
|
②`test.yml`の①と同じ場所に`npm install @types/jest`を追加→結果は変わらずエラーメッセージも同じ
|
56
56
|
|
57
|
-
③
|
57
|
+
③`test.yml`の①と同じ場所に`npm install @types/jest@26.0.0`のようにバージョンを指定して追加→結果は変わらずエラーメッセージも同じ
|
58
58
|
|
59
|
+
④`test.yml`の①と同じ場所に`npm install ts-jest@26.0.0`のようにバージョンを指定して追加→結果は変わらなかったがエラーメッセージに下記のメッセージが追加された
|
60
|
+
|
61
|
+
```
|
62
|
+
ts-jest[versions] (WARN) Version 4.1.5 of typescript installed has not been tested with ts-jest.
|
63
|
+
If you're experiencing issues, consider using a supported version (>=3.8.0 <4.0.0-0).
|
64
|
+
Please do not report issues in ts-jest if you are using unsupported versions.
|
65
|
+
```
|
66
|
+
|
67
|
+
⑤CIとは関係なく普通に`npm test`を実行してみる→今までは通っていたのに、今回になって`sh: jest: command not found`というエラーでそもそもテストができなくなった。
|
68
|
+
|
59
69
|
色々調べてみたのですが、なかなか解決できそうになかったので質問させていただきました。
|