Skip to content

Latest commit

 

History

History
19 lines (17 loc) · 425 Bytes

jest-everywhere.md

File metadata and controls

19 lines (17 loc) · 425 Bytes

Jest Everywhere

Alternate titles

  • Testing everything with jest

Abstract

How can we test every our backend and frontend code using jest? Why jest is the best choice as a test framework

Overview

  • Why Jest
  • How to setup Jest
    • yarn/npm commands
  • Simplest test
  • Async await test
  • Snapshot test
    • why this is cool
  • Testing a database
    • connect to the database beforeEach test
    • test are run in parallel