rangement/tests/main.test.js

13 lines
420 B
JavaScript
Raw Normal View History

2023-07-05 23:11:46 +02:00
xdescribe('rangement file detection', () => {
2023-09-10 11:30:50 +02:00
// find how to mock process.env arguments
// const call = mockUpload.mock.calls[0][0]
2023-07-05 23:11:46 +02:00
2023-09-10 11:30:50 +02:00
test('returns a list of 2 files to parse when given the folder testFiles/meme_base', () => {
})
test('returns a list of 1 file to parse when given the argument testFiles/image.jpg', () => {
})
test('returns a list of 0 file to parse when given the null argument', () => {
})
2023-07-05 23:11:46 +02:00
})