2020-08-31 22:15:18 +00:00
|
|
|
module.exports = {
|
2021-12-28 14:02:29 +00:00
|
|
|
statements: 45,
|
|
|
|
branches: 34,
|
|
|
|
lines: 46,
|
|
|
|
functions: 45,
|
2022-11-27 22:01:27 +00:00
|
|
|
excludeNodeModules: true,
|
2022-08-14 13:01:51 +00:00
|
|
|
extension: ['.js', '.html', '.json', '.css', '.svg', '.png', '.gif'],
|
2020-08-31 22:15:18 +00:00
|
|
|
exclude: [
|
|
|
|
'editor/jquery.min.js',
|
2022-08-14 13:01:51 +00:00
|
|
|
'editor/jgraduate/**',
|
|
|
|
'editor/react-extensions/react-test'
|
2020-08-31 22:15:18 +00:00
|
|
|
],
|
2022-11-27 22:01:27 +00:00
|
|
|
include: [
|
|
|
|
'src/**',
|
|
|
|
'packages/svgcanvas/**'
|
|
|
|
],
|
2021-12-28 14:02:29 +00:00
|
|
|
reporter: [
|
|
|
|
'json-summary',
|
|
|
|
'text',
|
|
|
|
'html'
|
2020-08-31 22:15:18 +00:00
|
|
|
]
|
2021-12-28 14:02:29 +00:00
|
|
|
}
|