mirror of
https://github.com/GitbookIO/gitbook.git
synced 2026-09-16 15:45:13 +00:00
18 lines
707 B
JavaScript
18 lines
707 B
JavaScript
var path = require('path');
|
|
|
|
describe('Paths', function() {
|
|
var PathUtils = require('..//path');
|
|
|
|
describe('setExtension', function() {
|
|
it('should correctly change extension of filename', function() {
|
|
expect(PathUtils.setExtension('test.md', '.html')).toBe('test.html');
|
|
expect(PathUtils.setExtension('test.md', '.json')).toBe('test.json');
|
|
});
|
|
|
|
it('should correctly change extension of path', function() {
|
|
expect(PathUtils.setExtension('hello/test.md', '.html')).toBe(path.normalize('hello/test.html'));
|
|
expect(PathUtils.setExtension('hello/test.md', '.json')).toBe(path.normalize('hello/test.json'));
|
|
});
|
|
});
|
|
});
|