15 lines
523 B
JavaScript
15 lines
523 B
JavaScript
import { setTitle } from '~/repository/utils/title';
|
|
|
|
describe('setTitle', () => {
|
|
it.each`
|
|
path | title
|
|
${'/'} | ${'Files'}
|
|
${'app'} | ${'app'}
|
|
${'app/assets'} | ${'app/assets'}
|
|
${'app/assets/javascripts'} | ${'app/assets/javascripts'}
|
|
`('sets document title as $title for $path', ({ path, title }) => {
|
|
setTitle(path, 'master', 'GitLab');
|
|
|
|
expect(document.title).toEqual(`${title} · master · GitLab`);
|
|
});
|
|
});
|