LoginSignup
1
1

More than 5 years have passed since last update.

jest-styled-cmponents v4からはtoMatchStyledComponentsSnapshotがtoMatchSnapshotへ変更

Posted at

styled-componentsを使う際テストでは、jest-styled-componentsは便利です。
styleの変化を検知することができます。

- Snapshot
+ Received

+.c0 {
+  color: green;
+}
+
 <button
-  className="sc-bdVaJa rOCEJ"
+  className="c0"
 />

v3では、このスナップショットを取るために、toMatchStyledComponentsSnapshotが必要でしたが、
v4以降は、このAPIが削除されtoMatchSnapshotでスナップショットするように変更されました。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1