1
0
mirror of https://github.com/sasjs/lint.git synced 2025-12-10 09:34:34 +00:00
Files
lint/src/utils/getLintConfig.spec.ts

11 lines
277 B
TypeScript

import { LintConfig } from '../types/LintConfig'
import { getLintConfig } from './getLintConfig'
describe('getLintConfig', () => {
it('should get the lint config', async () => {
const config = await getLintConfig()
expect(config).toBeInstanceOf(LintConfig)
})
})