import { resolveAssetPath } from '../../../../src/util/PathUtil'; import { readTemplate } from '../../../../src/util/templates/TemplateEngine'; import { mockFs } from '../../../util/Util'; jest.mock('fs'); describe('readTemplate', (): void => { const templateFile = 'template.xyz'; const templatePath = 'other'; beforeEach(async(): Promise => { const { data } = mockFs(resolveAssetPath('')); Object.assign(data, { 'template.xyz': '{{template}}', other: { 'template.xyz': '{{other}}', }, }); }); it('returns the empty string when no template is provided.', async(): Promise => { await expect(readTemplate()).resolves.toBe(''); }); it('accepts a filename.', async(): Promise => { await expect(readTemplate(templateFile)).resolves.toBe('{{template}}'); }); it('accepts options with a string template.', async(): Promise => { await expect(readTemplate({ templateString: 'abc' })).resolves.toBe('abc'); }); it('accepts options with a filename.', async(): Promise => { await expect(readTemplate({ templateFile })).resolves.toBe('{{template}}'); }); it('accepts options with a filename and a path.', async(): Promise => { await expect(readTemplate({ templateFile, templatePath })).resolves.toBe('{{other}}'); }); });