mirror of
https://github.com/kou029w/nodejs-hands-on.git
synced 2025-01-18 08:05:10 +00:00
watch not working on node.js v18
This commit is contained in:
parent
d38b654d8b
commit
a13f0f274e
3 changed files with 8 additions and 1 deletions
|
@ -25,6 +25,9 @@ node --test --watch
|
|||
|
||||
終了するにはキーボードの <ruby>`Ctrl` + `C`<rt>`Ctrl`キーを押しながら`C`</rt></ruby> を押します。
|
||||
|
||||
> **Note**\
|
||||
> `--watch` オプションは Node.js v18 では利用できません。
|
||||
|
||||
## プロジェクトでのテストコマンドの設定
|
||||
|
||||
この設定を行うと、`npm test` コマンドでテストを実行できるようになります。
|
||||
|
|
|
@ -4,8 +4,9 @@ Node.jsに組み込まれた新しいテストランナーを使ってテスト
|
|||
Node.jsでどうやってテストするんだろう?という疑問に答えます。
|
||||
テストを行っていくための最初の一歩になればと思います。
|
||||
|
||||
<!-- NOTE: terminal=watch は現在 Node.js v18 では機能しないため使用しない -->
|
||||
<iframe
|
||||
src="https://stackblitz.com/github/kou029w/nodejs-hands-on/tree/main/templates/template?embed=1&view=editor&terminal=watch&file=sum.js,sum.test.js"
|
||||
src="https://stackblitz.com/github/kou029w/nodejs-hands-on/tree/main/templates/template?embed=1&view=editor&terminal=test&file=sum.js,sum.test.js"
|
||||
style="
|
||||
width: 100%;
|
||||
height: 640px;
|
||||
|
|
|
@ -98,6 +98,9 @@ npm test
|
|||
node --test --watch
|
||||
```
|
||||
|
||||
> **Note**\
|
||||
> `--watch` オプションは Node.js v18 では利用できません。
|
||||
|
||||
テスト結果:
|
||||
|
||||
```console
|
||||
|
|
Loading…
Add table
Reference in a new issue