We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f4ce8c commit 6b22956Copy full SHA for 6b22956
__tests__/CweManager.test.js
@@ -2,15 +2,15 @@ const { CweManager } = require('../index')
2
3
describe('Cwe Manager', () => {
4
describe('Cwe Manager supports instantiation with custom data', () => {
5
- test('Cwe Manager instnatiated with custom hierarchy', () => {
+ test('Cwe Manager instantiated with custom hierarchy', () => {
6
const cweManager = new CweManager({
7
cweHierarchy: [{ weaknessId: '31337', parentId: '31338' }]
8
})
9
const result = cweManager.isChildOf({ weaknessId: '31337', parentId: '31338' })
10
expect(result).toBe(true)
11
12
13
- test.todo('Cwe Manager instnatiated with custom dictionary')
+ test.todo('Cwe Manager instantiated with custom dictionary')
14
15
16
describe('Cwe Manager getters', () => {
0 commit comments