-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Diff-Partial では差分外に誤りがあっても指摘されない #16
Comments
Diff も同様 |
実際の運用上だと差分外の間違いがかなり多い印象なので、チェックできると嬉しいです |
#10 でも言及したように、 現状
ほしい
という認識で問題ないですかね? |
すみません、例を載せておくべきでした 🙇 私の認識が合っていれば、 #10 で言及されている内容とは異なる事象かと思います。 #10 の内容は diff-partial コマンドでは全ての diff を含んでいない場合にもテストが通ってしまうため、指定されたファイル間の差分が教材のコードブロック中に全て含まれている場合と含まれていない場合とでコマンドを分けようというものと認識しています。 今回の場合はそもそも diff 外においてコードブロックとサンプルファイルで差異が生じているにも関わらず指摘されないという形です。 diff コマンドにおいて、例えば以下のような場合に指摘されません。 教材側コードブロック "use stri
-import dc from "damage-calc";
+import $ from "jquery"; 旧サンプル "use strict";
import dc from "damage-calc"; 新サンプル "use strict";
import $ from "jquery"; これらのコードでは、diff 外の部分である 1 行目が一致していないにも関わらず、assert-codeblock は指摘しません。 これは diff-partial コマンドにおいても同様です。 |
なるほど! 確かにこれは指摘されるべきですね |
意図された仕様かもしれません?
多分大変そうですができれば差分外の誤りも含めて指摘できれば嬉しそうです。
The text was updated successfully, but these errors were encountered: