@realfavicongenerator/generate-favicon
Version:
Generate a favicon
35 lines (34 loc) • 872 B
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const web_app_manifest_1 = require("./web-app-manifest");
test('generateWebManifest', () => {
expect((0, web_app_manifest_1.generateWebManifest)({
name: `foo`,
short_name: `bar`,
icons: [
{
src: `baz.png`,
sizes: `128x128`,
type: `image/png`,
purpose: `maskable`
}
],
theme_color: `#123456`,
background_color: `#abcdef`,
display: `standalone`
})).toEqual(`{
"name": "foo",
"short_name": "bar",
"icons": [
{
"src": "baz.png",
"sizes": "128x128",
"type": "image/png",
"purpose": "maskable"
}
],
"theme_color": "#123456",
"background_color": "#abcdef",
"display": "standalone"
}`);
});