Skip to content

Commit 4876267

Browse files
committed
fix: fix eslint syntax error
1 parent 72c6b95 commit 4876267

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

jest.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ module.exports = {
44
globals: {
55
},
66
// setupFilesAfterEnv: ["./setupTests.js"], // enzyme adapter
7-
transformIgnorePatterns: ["/node_modules/", "dist","lib"],
7+
transformIgnorePatterns: ["/node_modules/", "lib", "dist"],
88
testPathIgnorePatterns: ['/node_modules/'],
99
transform: {
1010
"^.+\\.[jt]s?(x)$": "babel-jest"

src/stories/chromeDownload.stories.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ stories.add('chromeDownload', () => {
3535
<ChromeDownload downloadChrome={() => {}} />
3636
~~~
3737
`,
38-
TableComponent: () => PropsTable({ propDefinitions }),
39-
38+
TableComponent: () => PropsTable({ propDefinitions })
4039
}
4140
})

0 commit comments

Comments
 (0)