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