disabled hideExplorer

This commit is contained in:
Nebel 2022-07-20 19:22:15 +09:00
parent de8962fa30
commit cd94fdf242
2 changed files with 5 additions and 5 deletions

View file

@ -5,7 +5,7 @@ Jestを使ってどうやってテストするのかといった疑問に答
テストを行っていくための最初の一歩になればと思います。 テストを行っていくための最初の一歩になればと思います。
<iframe <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=" style="
width: 100%; width: 100%;
height: 640px; height: 640px;

View file

@ -13,7 +13,7 @@ Jestの代表的な機能を紹介します。
- `not` … 検証の結果を反転させます - `not` … 検証の結果を反転させます
<iframe <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=" style="
width: 100%; width: 100%;
height: 640px; height: 640px;
@ -61,7 +61,7 @@ Jestの代表的な機能を紹介します。
Jestは、`test` に渡す関数の前に `async` キーワードを記述するだけで、非同期テストを実行できます。 Jestは、`test` に渡す関数の前に `async` キーワードを記述するだけで、非同期テストを実行できます。
<iframe <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=" style="
width: 100%; width: 100%;
height: 640px; height: 640px;
@ -79,7 +79,7 @@ Jestは、`test` に渡す関数の前に `async` キーワードを記述する
`beforeEach``afterEach` を使用することでテストの実行の前に繰り返し行う準備や、後片付けの処理を宣言できます。 `beforeEach``afterEach` を使用することでテストの実行の前に繰り返し行う準備や、後片付けの処理を宣言できます。
<iframe <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=" style="
width: 100%; width: 100%;
height: 640px; height: 640px;
@ -97,7 +97,7 @@ Jestは、`test` に渡す関数の前に `async` キーワードを記述する
モック関数を使用することでコード間の繋がりをテストできます。 モック関数を使用することでコード間の繋がりをテストできます。
<iframe <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=" style="
width: 100%; width: 100%;
height: 640px; height: 640px;