Skip to content

Commit

Permalink
fix(preset): correct typo in preset test match
Browse files Browse the repository at this point in the history
  • Loading branch information
keplersj committed Aug 26, 2019
1 parent 0e31470 commit e0b68b1
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 51 deletions.
68 changes: 34 additions & 34 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,23 +82,23 @@ In your `package.json`
"yml"
],
"testMatch": [
"**/*js",
"**/*mjs",
"**/*jsx",
"**/*vue",
"**/*ts",
"**/*tsx",
"**/*css",
"**/*less",
"**/*scss",
"**/*html",
"**/*json",
"**/*graphql",
"**/*md",
"**/*markdown",
"**/*mdx",
"**/*yaml",
"**/*yml"
"**/*.js",
"**/*.mjs",
"**/*.jsx",
"**/*.vue",
"**/*.ts",
"**/*.tsx",
"**/*.css",
"**/*.less",
"**/*.scss",
"**/*.html",
"**/*.json",
"**/*.graphql",
"**/*.md",
"**/*.markdown",
"**/*.mdx",
"**/*.yaml",
"**/*.yml"
]
}
}
Expand Down Expand Up @@ -129,23 +129,23 @@ module.exports = {
"yml"
],
testMatch: [
"**/*js",
"**/*mjs",
"**/*jsx",
"**/*vue",
"**/*ts",
"**/*tsx",
"**/*css",
"**/*less",
"**/*scss",
"**/*html",
"**/*json",
"**/*graphql",
"**/*md",
"**/*markdown",
"**/*mdx",
"**/*yaml",
"**/*yml"
"**/*.js",
"**/*.mjs",
"**/*.jsx",
"**/*.vue",
"**/*.ts",
"**/*.tsx",
"**/*.css",
"**/*.less",
"**/*.scss",
"**/*.html",
"**/*.json",
"**/*.graphql",
"**/*.md",
"**/*.markdown",
"**/*.mdx",
"**/*.yaml",
"**/*.yml"
]
};
```
Expand Down
34 changes: 17 additions & 17 deletions jest-preset.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,22 @@ module.exports = {
"yml"
],
testMatch: [
"**/*js",
"**/*mjs",
"**/*jsx",
"**/*vue",
"**/*ts",
"**/*tsx",
"**/*css",
"**/*less",
"**/*scss",
"**/*html",
"**/*json",
"**/*graphql",
"**/*md",
"**/*markdown",
"**/*mdx",
"**/*yaml",
"**/*yml"
"**/*.js",
"**/*.mjs",
"**/*.jsx",
"**/*.vue",
"**/*.ts",
"**/*.tsx",
"**/*.css",
"**/*.less",
"**/*.scss",
"**/*.html",
"**/*.json",
"**/*.graphql",
"**/*.md",
"**/*.markdown",
"**/*.mdx",
"**/*.yaml",
"**/*.yml"
]
};

0 comments on commit e0b68b1

Please sign in to comment.