mirror of
https://github.com/kou029w/intro-to-software-testing.git
synced 2025-01-31 14:28:11 +00:00
Compare commits
No commits in common. "0872dc04c0b0847109cb60b372dbb7eae130bef7" and "12099cd196fbabc40b1e30796b9204097aff1ba2" have entirely different histories.
0872dc04c0
...
12099cd196
1 changed files with 2 additions and 2 deletions
|
@ -158,7 +158,7 @@ test("西暦年号が4で割り切れる年はうるう年", () => {
|
||||||
## ここまでのまとめ
|
## ここまでのまとめ
|
||||||
|
|
||||||
- テストとは品質の評価
|
- テストとは品質の評価
|
||||||
- より良い品質の製品を提供するために、品質を見極め、改善し続ける
|
- より良い製品の提供を目指すために、品質を見極め、改善し続ける
|
||||||
- 自動テスト … 自動化されたテストプロセス
|
- 自動テスト … 自動化されたテストプロセス
|
||||||
- TDD … 最初からテストをすばやいサイクルで行い続ける設計手法
|
- TDD … 最初からテストをすばやいサイクルで行い続ける設計手法
|
||||||
- CI/CD … デプロイメントパインプラインによって提供を行う一連の継続的な活動
|
- CI/CD … デプロイメントパインプラインによって提供を行う一連の継続的な活動
|
||||||
|
@ -331,7 +331,7 @@ Microsoft が開発した E2E テストを行うためのフレームワーク
|
||||||
|
|
||||||
```console
|
```console
|
||||||
$ npm i -D playwright @playwright/test # インストール
|
$ 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 # テストの実行
|
$ npx playwright test --headed # テストの実行
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue