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

47 lines
1.4 KiB
JavaScript
Raw Normal View History

const test = require("node:test")
const assert = require("node:assert/strict")
const { ESLint } = require("eslint")
2022-02-19 16:05:21 +01:00
const eslint = new ESLint({
ignore: false,
useEslintrc: false,
overrideConfigFile: "eslintrc.json",
})
test("ensure we validate correctly JavaScript files", async () => {
2022-02-19 16:05:21 +01:00
const [noErrors] = await eslint.lintFiles(
"test/fixtures/javascript-no-errors.js",
2022-02-19 16:05:21 +01:00
)
const [withErrors] = await eslint.lintFiles(
"test/fixtures/javascript-with-errors.js",
2022-02-19 16:05:21 +01:00
)
assert.strictEqual(noErrors?.errorCount, 0)
assert.strictEqual(withErrors?.errorCount, 3)
2022-02-19 16:05:21 +01:00
})
test("ensure we validate correctly TypeScript files", async () => {
2022-02-19 16:05:21 +01:00
const [noErrors] = await eslint.lintFiles(
"test/fixtures/typescript-no-errors.ts",
2022-02-19 16:05:21 +01:00
)
const [withErrors] = await eslint.lintFiles(
"test/fixtures/javascript-with-errors.js",
2022-02-19 16:05:21 +01:00
)
assert.strictEqual(noErrors?.errorCount, 0)
assert.strictEqual(withErrors?.errorCount, 3)
2022-02-19 16:05:21 +01:00
})
test("ensure we allow top-level await", async () => {
2022-02-19 16:05:21 +01:00
const [lintResult] = await eslint.lintFiles(
"test/fixtures/top-level-await.mjs",
2022-02-19 16:05:21 +01:00
)
assert.strictEqual(lintResult?.errorCount, 0)
2022-02-19 16:05:21 +01:00
})
test("ensure we allow to ignore floating promise with void operator (@typescript-eslint/no-floating-promises)", async () => {
const [lintResult] = await eslint.lintFiles(
"test/fixtures/typescript-no-errors-ignore-promise.ts",
)
assert.strictEqual(lintResult?.errorCount, 0)
})