From 7f4cff3faeb91adcf6a7b6af1e35b9c9f66e3690 Mon Sep 17 00:00:00 2001 From: Matteo Figus Date: Sun, 11 Jun 2017 18:52:00 +0100 Subject: [PATCH] Simplify readme One of the reasons I love jest the most, is snapshot testing. I use it a lot for unit and acceptance testing, so I think UI testing is only a minimal fraction of what snapshots can do and are excellent at. This is my personal take...but feel free to disagree :) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d1a05843284c..b6478c87fe32 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ - **🏃🏽 Instant Feedback**: Failed tests run first. Fast interactive mode can switch between running all tests or only test files related to changed files. -- **📸 Snapshot Testing**: Jest can [capture snapshots](http://facebook.github.io/jest/docs/en/snapshot-testing.html) of React trees or other serializable values to simplify UI testing. +- **📸 Snapshot Testing**: Jest can [capture snapshots](http://facebook.github.io/jest/docs/en/snapshot-testing.html) of React trees or other serializable values to simplify testing. ## Getting Started