import { getManifestFiles, } from '../../../../../website/src/libs/api-v3/buildManifest'; describe('Build Manifest', () => { describe('getManifestFiles', () => { it('returns an html string', () => { let htmlCode = getManifestFiles('app'); expect(htmlCode.startsWith(' { let getManifestFilesFn = () => { getManifestFiles('strange name here') }; expect(getManifestFilesFn).to.throw(Error); }); }); });