Cargando…

Building your own test framework : a practical guide to writing better automated tests /

Learn to write better automated tests that will dramatically increase your productivity and have fun while doing so. This book is a build-your-own adventure designed for individual reading and for collaborative workshops. You will build an xUnit automated test framework using JavaScript: initially a...

Descripción completa

Detalles Bibliográficos
Clasificación:Libro Electrónico
Autor principal: Irvine, Daniel (Autor)
Otros Autores: Pyhäjärvi, Maaret (writer of foreword.)
Formato: Electrónico eBook
Idioma:Inglés
Publicado: New York, NY : Apress, [2023]
Temas:
Acceso en línea:Texto completo (Requiere registro previo con correo institucional)
Tabla de Contenidos:
  • Chapter 1: Creating an NPM Package of My Very Own
  • Chapter 2: Building it to Define a Test
  • Chapter 3: Grouping Tests with Describe
  • Chapter 4: Promoting Conciseness with BeforeEach and AfterEach
  • Chapter 5: Improving Legibility with Expect
  • Chapter 6: Formatting Expectation Errors
  • Chapter 7. Automatically Discovering Test Files
  • Chapter 8: Focusing on Tests with It.Only and Describe.Only
  • Chapter 9: Supporting Asynchronous Tests
  • Chapter 10: Reporting
  • Chapter 11: Sharing Behavior with it.BehavesLike
  • Chapter 12: Tagging Tests
  • Chapter 13 : Skipping Tests
  • Chapter 14 : Randomizing Tests
  • Chapter 15. Understanding test doubles
  • Chapter 16. Module Mocks.