1
1
mirror of https://github.com/theoludwig/eslint-config-conventions.git synced 2024-09-19 01:25:53 +02:00
eslint-config-conventions/test/validate-config.js

38 lines
1.0 KiB
JavaScript
Raw Normal View History

2022-02-19 16:05:21 +01:00
const { ESLint } = require('eslint')
2022-03-19 14:28:00 +01:00
const tap = require('tap')
2022-02-19 16:05:21 +01:00
const eslint = new ESLint({
ignore: false,
useEslintrc: false,
overrideConfigFile: 'eslintrc.json'
})
2022-03-19 14:28:00 +01:00
tap.test('ensure we validate correctly JavaScript files', async (t) => {
2022-02-19 16:05:21 +01:00
const [noErrors] = await eslint.lintFiles(
'test/fixtures/javascript-no-errors.js'
)
const [withErrors] = await eslint.lintFiles(
'test/fixtures/javascript-with-errors.js'
)
t.equal(noErrors.errorCount, 0)
t.equal(withErrors.errorCount, 3)
})
2022-03-19 14:28:00 +01:00
tap.test('ensure we validate correctly TypeScript files', async (t) => {
2022-02-19 16:05:21 +01:00
const [noErrors] = await eslint.lintFiles(
'test/fixtures/typescript-no-errors.ts'
)
const [withErrors] = await eslint.lintFiles(
'test/fixtures/javascript-with-errors.js'
)
t.equal(noErrors.errorCount, 0)
t.equal(withErrors.errorCount, 3)
})
2022-03-19 14:28:00 +01:00
tap.test('ensure we allow top-level await', async (t) => {
2022-02-19 16:05:21 +01:00
const [lintResult] = await eslint.lintFiles(
'test/fixtures/top-level-await.mjs'
)
t.equal(lintResult.errorCount, 0)
})