1
0
Fork 0
mirror of https://github.com/kou029w/nodejs-hands-on.git synced 2025-04-11 06:06:23 +00:00
nodejs-hands-on/src/test/index.md

20 lines
765 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Test Runnerではじめるテスト
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=test&file=sum.js,sum.test.js"
style="
width: 100%;
height: 640px;
border: 0;
border-radius: 4px;
overflow: hidden;
"
title="template"
></iframe>
それでは、さっそく学んでいきましょう!