Compare commits

..

No commits in common. "0872dc04c0b0847109cb60b372dbb7eae130bef7" and "12099cd196fbabc40b1e30796b9204097aff1ba2" have entirely different histories.

View file

@ -158,7 +158,7 @@ test("西暦年号が4で割り切れる年はうるう年", () => {
## ここまでのまとめ
- テストとは品質の評価
- より良い品質の製品を提供するために、品質を見極め、改善し続ける
- より良い製品の提供を目指すために、品質を見極め、改善し続ける
- 自動テスト … 自動化されたテストプロセス
- TDD … 最初からテストをすばやいサイクルで行い続ける設計手法
- CI/CD … デプロイメントパインプラインによって提供を行う一連の継続的な活動
@ -331,7 +331,7 @@ Microsoft が開発した E2E テストを行うためのフレームワーク
```console
$ npm i -D playwright @playwright/test # インストール
$ npx playwright codegen -o a.test.mjs https://todomvc.com # テストコードの自動生成
$ npx playwright codegen -o a.test.mjs https://example.com # テストコードの自動生成
$ npx playwright test --headed # テストの実行
```