File tree Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change 2
2
3
3
const expected = 90
4
4
const exclude = [
5
- 'expr/test' ,
6
- 'checker/mock' ,
7
- 'vm/func_types' ,
8
- 'vm/runtime/helpers' ,
9
- 'internal/difflib' ,
10
- 'internal/spew' ,
11
- 'internal/testify' ,
12
- 'pro' ,
5
+ 'expr/test' , // We do not need to test the test package.
6
+ 'checker/mock' , // Mocks only used for testing.
7
+ 'vm/func_types' , // Generated files.
8
+ 'vm/runtime/helpers' , // Generated files.
9
+ 'internal/difflib' , // Test dependency. This is vendored dependency, and ideally we also have good tests for it.
10
+ 'internal/spew' , // Test dependency.
11
+ 'internal/testify' , // Test dependency.
12
+ 'patcher/value' , // Contains a lot of repeating code. Ideally we should have a test for it.
13
+ 'pro' , // Expr Pro is not a part of the main codebase.
13
14
]
14
15
15
16
cd ( path . resolve ( __dirname , '..' , '..' ) )
You can’t perform that action at this time.
0 commit comments