File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2,15 +2,15 @@ const { CweManager } = require('../index')
2
2
3
3
describe ( 'Cwe Manager' , ( ) => {
4
4
describe ( 'Cwe Manager supports instantiation with custom data' , ( ) => {
5
- test ( 'Cwe Manager instnatiated with custom hierarchy' , ( ) => {
5
+ test ( 'Cwe Manager instantiated with custom hierarchy' , ( ) => {
6
6
const cweManager = new CweManager ( {
7
7
cweHierarchy : [ { weaknessId : '31337' , parentId : '31338' } ]
8
8
} )
9
9
const result = cweManager . isChildOf ( { weaknessId : '31337' , parentId : '31338' } )
10
10
expect ( result ) . toBe ( true )
11
11
} )
12
12
13
- test . todo ( 'Cwe Manager instnatiated with custom dictionary' )
13
+ test . todo ( 'Cwe Manager instantiated with custom dictionary' )
14
14
} )
15
15
16
16
describe ( 'Cwe Manager getters' , ( ) => {
You can’t perform that action at this time.
0 commit comments