mirror of
https://github.com/kou029w/jest-hands-on.git
synced 2025-01-31 14:07:58 +00:00
disabled hideExplorer
This commit is contained in:
parent
de8962fa30
commit
cd94fdf242
2 changed files with 5 additions and 5 deletions
|
@ -5,7 +5,7 @@ Jestを使ってどうやってテストするのか?といった疑問に答
|
|||
テストを行っていくための最初の一歩になればと思います。
|
||||
|
||||
<iframe
|
||||
src="https://stackblitz.com/github/kou029w/jest-hands-on/tree/main/templates/template?embed=1&hideExplorer=1&view=editor&terminal=test&file=sum.test.js"
|
||||
src="https://stackblitz.com/github/kou029w/jest-hands-on/tree/main/templates/template?embed=1&view=editor&terminal=test&file=sum.test.js"
|
||||
style="
|
||||
width: 100%;
|
||||
height: 640px;
|
||||
|
|
|
@ -13,7 +13,7 @@ Jestの代表的な機能を紹介します。
|
|||
- `not` … 検証の結果を反転させます
|
||||
|
||||
<iframe
|
||||
src="https://stackblitz.com/github/kou029w/jest-hands-on/tree/main/templates/basic?embed=1&hideExplorer=1&view=editor&terminal=test&file=toBe.test.js"
|
||||
src="https://stackblitz.com/github/kou029w/jest-hands-on/tree/main/templates/basic?embed=1&view=editor&terminal=test&file=toBe.test.js"
|
||||
style="
|
||||
width: 100%;
|
||||
height: 640px;
|
||||
|
@ -61,7 +61,7 @@ Jestの代表的な機能を紹介します。
|
|||
Jestは、`test` に渡す関数の前に `async` キーワードを記述するだけで、非同期テストを実行できます。
|
||||
|
||||
<iframe
|
||||
src="https://stackblitz.com/github/kou029w/jest-hands-on/tree/main/templates/promise?ctl=1&embed=1&hideExplorer=1&view=editor&terminal=test&file=promise.test.js"
|
||||
src="https://stackblitz.com/github/kou029w/jest-hands-on/tree/main/templates/promise?ctl=1&embed=1&view=editor&terminal=test&file=promise.test.js"
|
||||
style="
|
||||
width: 100%;
|
||||
height: 640px;
|
||||
|
@ -79,7 +79,7 @@ Jestは、`test` に渡す関数の前に `async` キーワードを記述する
|
|||
`beforeEach` と `afterEach` を使用することでテストの実行の前に繰り返し行う準備や、後片付けの処理を宣言できます。
|
||||
|
||||
<iframe
|
||||
src="https://stackblitz.com/github/kou029w/jest-hands-on/tree/main/templates/scope?ctl=1&embed=1&hideExplorer=1&view=editor&terminal=test&expanddevtools=1&&file=scope.test.js"
|
||||
src="https://stackblitz.com/github/kou029w/jest-hands-on/tree/main/templates/scope?ctl=1&embed=1&view=editor&terminal=test&expanddevtools=1&&file=scope.test.js"
|
||||
style="
|
||||
width: 100%;
|
||||
height: 640px;
|
||||
|
@ -97,7 +97,7 @@ Jestは、`test` に渡す関数の前に `async` キーワードを記述する
|
|||
モック関数を使用することでコード間の繋がりをテストできます。
|
||||
|
||||
<iframe
|
||||
src="https://stackblitz.com/github/kou029w/jest-hands-on/tree/main/templates/mock?ctl=1&embed=1&hideExplorer=1&view=editor&terminal=test&file=mock.test.js"
|
||||
src="https://stackblitz.com/github/kou029w/jest-hands-on/tree/main/templates/mock?ctl=1&embed=1&view=editor&terminal=test&file=mock.test.js"
|
||||
style="
|
||||
width: 100%;
|
||||
height: 640px;
|
||||
|
|
Loading…
Add table
Reference in a new issue