We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
基本文法だとユニットテストを書くまでではない(逆に書きにくい)ものが多い。 以下の形式でdoctestライクのテスト方法を追加する。
let a = 42; console.log(42); // => 42
これにより、サンプルコードのコメントに書いた評価結果と実際の出力が一致するかをテストできる。
評価したい式; // => 期待する評価結果
or
console.log(評価したい式); // => 期待する評価結果
#14 #36
The text was updated successfully, but these errors were encountered:
実際に実行して検証するので単体で実行できないといけない。 ./source/**/*-example.jsを対象に実行する。
./source/**/*-example.js
Sorry, something went wrong.
test(read-eval-print): add doctest
a4b7501
./source/**/*-example.jsを対象にdoctestを実行 close #41
89abec8
No branches or pull requests
基本文法だとユニットテストを書くまでではない(逆に書きにくい)ものが多い。
以下の形式でdoctestライクのテスト方法を追加する。
これにより、サンプルコードのコメントに書いた評価結果と実際の出力が一致するかをテストできる。
サポートする形式
or
関連
#14 #36
The text was updated successfully, but these errors were encountered: