chore: fixed tsconfig cypress and angular karma conflicts
All checks were successful
Build / Build-and-ng-test (pull_request) Successful in 4m13s

This commit is contained in:
Mihajlo Medjedovic 2024-09-27 14:05:43 +02:00
parent a1a90519c5
commit e4e04a193f
3 changed files with 10 additions and 3 deletions

View File

@ -6,5 +6,8 @@
"lib": ["es2019", "dom"],
"types": ["cypress", "cypress-real-events"]
},
"include": ["**/*.ts"]
"include": [
"**/*.ts",
"../cypress.config.ts"
]
}

View File

@ -2,7 +2,7 @@ import { getHotDataSchema } from '../utils/getHotDataSchema'
describe('DC Validator - hot data schema', () => {
it('should return correct value for col type', () => {
expect(getHotDataSchema('numeric')).toEqual(0)
expect(getHotDataSchema('numeric')).toEqual('')
expect(
getHotDataSchema('autocomplete', { data: '', source: [1, 2, 3] })
).toEqual(1)

View File

@ -46,5 +46,9 @@
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true,
}
},
"exclude": [
"cypress/**/*.ts",
"cypress.config.ts"
]
}