1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2024-07-18 02:20:12 +02:00
programming-challenges/cli/utils/__test__/isExistingPath.test.ts

24 lines
567 B
TypeScript
Raw Normal View History

import fsMock from 'mock-fs'
2022-02-19 18:30:29 +01:00
import { isExistingPath } from '../isExistingPath.js'
describe('utils/isExistingFile', () => {
2022-02-19 18:30:29 +01:00
afterEach(() => {
fsMock.restore()
})
it('should return true if the file exists', async () => {
fsMock({
'/file.txt': ''
2021-12-06 17:18:14 +01:00
}, { createCwd: false })
expect(await isExistingPath('/file.txt')).toBeTruthy()
})
it("should return false if the file doesn't exists", async () => {
fsMock({
'/file.txt': ''
2021-12-06 17:18:14 +01:00
}, { createCwd: false })
expect(await isExistingPath('/randomfile.txt')).toBeFalsy()
})
})