integrations / snappydoo

Turns Jest snapshots into Slack message builder screenshots
12 stars 7 forks source link

Allow specifying excluded files by regular expression #4

Open wilhelmklopp opened 6 years ago

wilhelmklopp commented 6 years ago

In snappydoo config

{
  "snappydoo": {
    "exclude": [
      "SnapshotFileName", // exclude files with exactly this filename (when `test.js.snap` is appended)
      {
        type: "regex",
        expression: "(.*)" // exclude all files that match this expression
      }
    ]
  }
}