mirror of
https://github.com/wahyd4/vuepress.git
synced 2026-08-19 18:25:51 +10:00
21 lines
360 B
JavaScript
21 lines
360 B
JavaScript
import isIndexFile from '../lib/isIndexFile'
|
|
|
|
test('isIndexFile', () => {
|
|
[
|
|
'README.md',
|
|
'readme.md',
|
|
'INDEX.md',
|
|
'index.md',
|
|
'foo/README.md',
|
|
'foo/index.md'
|
|
].forEach(file => {
|
|
expect(isIndexFile(file)).toBe(true)
|
|
});
|
|
[
|
|
'foo/one.md',
|
|
'one.md'
|
|
].forEach(file => {
|
|
expect(isIndexFile(file)).toBe(false)
|
|
})
|
|
})
|