Skip to content

Commit a025ec5

Browse files
committed
test: LOAPI-15 adjusted file names
1 parent d74ce20 commit a025ec5

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

src/validations.test.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,23 @@ import {canBeConvertedToPDF} from './validations';
22

33
it.each`
44
filename
5-
${'image.docx'}
6-
${'image.pdf'}
5+
${'document.docx'}
6+
${'document.pdf'}
77
`('should return true for supported filename $filename', ({filename}) => {
88
expect(canBeConvertedToPDF(filename)).toEqual(true);
99
});
1010

1111
it.each`
1212
filename
13-
${'image.mpp'}
14-
${'image.msg'}
13+
${'project.mpp'}
14+
${'email.msg'}
1515
${'image.jpg'}
16-
${'image.mp4'}
17-
${'image.mp3'}
18-
${'image.wav'}
19-
${'image.chm'}
20-
${'image.gdoc'}
21-
${'image.dwg'}
16+
${'video.mp4'}
17+
${'audio.mp3'}
18+
${'sound.wav'}
19+
${'help.chm'}
20+
${'google-doc.gdoc'}
21+
${'drawing.dwg'}
2222
`('should return false for unsupported filename $filename', ({filename}) => {
2323
expect(canBeConvertedToPDF(filename)).toEqual(false);
2424
});

0 commit comments

Comments
 (0)