1
1
mirror of https://github.com/theoludwig/html-w3c-validator.git synced 2025-05-21 23:21:29 +02:00

chore: maintenance

This commit is contained in:
Divlo
2022-02-19 16:55:36 +01:00
parent 29801ac6f9
commit d92235d79d
18 changed files with 6270 additions and 15353 deletions

View File

@ -10,7 +10,7 @@ describe('html-w3c-validator', () => {
jest.clearAllMocks()
})
it('should be instance of the command', async () => {
it('should be instance of the command', () => {
const command = cli.process([])
expect(command).toBeInstanceOf(HTMLValidatorCommand)
})

View File

@ -3,7 +3,7 @@ import fsMock from 'mock-fs'
import { isExistingPath } from '../isExistingPath.js'
describe('utils/isExistingFile', () => {
afterEach(async () => {
afterEach(() => {
fsMock.restore()
})