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

chore: replace tape with tap

This commit is contained in:
Divlo 2022-03-19 14:28:00 +01:00
parent 4271efe20b
commit 387509a30f
No known key found for this signature in database
GPG Key ID: 8F9478F220CE65E9
6 changed files with 6053 additions and 604 deletions

1
.gitignore vendored
View File

@ -4,6 +4,7 @@ node_modules
# testing
coverage
.nyc_output
# debug
npm-debug.log*

8
.taprc Normal file
View File

@ -0,0 +1,8 @@
ts: false
jsx: false
flow: false
check-coverage: true
coverage: true
test-ignore:
- 'test/fixtures'

6616
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -34,7 +34,7 @@
"lint:javascript": "eslint \"**/*.{js,jsx,ts,tsx}\" -c \"eslintrc.json\"",
"lint:prettier": "prettier \".\" --check --ignore-path \".gitignore\"",
"lint:staged": "lint-staged",
"test": "tape \"test/**/*.js\"",
"test": "tap",
"release": "semantic-release",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
@ -49,22 +49,22 @@
"devDependencies": {
"@commitlint/cli": "16.2.3",
"@commitlint/config-conventional": "16.2.1",
"@types/eslint": "8.4.1",
"@types/tap": "15.0.6",
"@typescript-eslint/eslint-plugin": "5.15.0",
"@typescript-eslint/parser": "5.15.0",
"editorconfig-checker": "4.0.2",
"eslint": "8.11.0",
"@types/eslint": "8.4.1",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-unicorn": "41.0.1",
"typescript": "4.6.2",
"@typescript-eslint/parser": "5.15.0",
"@typescript-eslint/eslint-plugin": "5.15.0",
"tape": "5.5.2",
"husky": "7.0.4",
"lint-staged": "12.3.7",
"markdownlint-cli": "0.31.1",
"@types/tape": "4.13.2",
"pinst": "3.0.0",
"prettier": "2.6.0",
"semantic-release": "19.0.2"
"semantic-release": "19.0.2",
"tap": "16.0.0",
"typescript": "4.6.2"
}
}

View File

@ -1,13 +1,12 @@
const test = require('tape')
const tap = require('tap')
const config = require('../index.js')
test('test basic properties of config', function (t) {
tap.test('test basic properties of config', async (t) => {
t.ok(isObject(config.parserOptions))
t.ok(isObject(config.env))
t.ok(isObject(config.rules))
t.ok(isObject(config.overrides))
t.end()
})
function isObject(object) {

View File

@ -1,5 +1,5 @@
const { ESLint } = require('eslint')
const test = require('tape')
const tap = require('tap')
const eslint = new ESLint({
ignore: false,
@ -7,7 +7,7 @@ const eslint = new ESLint({
overrideConfigFile: 'eslintrc.json'
})
test('ensure we validate correctly JavaScript files', async (t) => {
tap.test('ensure we validate correctly JavaScript files', async (t) => {
const [noErrors] = await eslint.lintFiles(
'test/fixtures/javascript-no-errors.js'
)
@ -16,10 +16,9 @@ test('ensure we validate correctly JavaScript files', async (t) => {
)
t.equal(noErrors.errorCount, 0)
t.equal(withErrors.errorCount, 3)
t.end()
})
test('ensure we validate correctly TypeScript files', async (t) => {
tap.test('ensure we validate correctly TypeScript files', async (t) => {
const [noErrors] = await eslint.lintFiles(
'test/fixtures/typescript-no-errors.ts'
)
@ -28,13 +27,11 @@ test('ensure we validate correctly TypeScript files', async (t) => {
)
t.equal(noErrors.errorCount, 0)
t.equal(withErrors.errorCount, 3)
t.end()
})
test('ensure we allow top-level await', async (t) => {
tap.test('ensure we allow top-level await', async (t) => {
const [lintResult] = await eslint.lintFiles(
'test/fixtures/top-level-await.mjs'
)
t.equal(lintResult.errorCount, 0)
t.end()
})