mirror of
https://github.com/outline/outline.git
synced 2026-08-03 13:27:25 +03:00
* Add Slab importer backed by the Markdown import pipeline Slab exports a zip of Markdown documents that is structurally identical to the Outline Markdown export, with one difference: images are referenced as remote signed URLs rather than files inside the archive. Rather than build a parallel importer, this reuses the Markdown task and processor and teaches the shared import pipeline to download remote images: - Enable per-page attachment upload for the Markdown task. The base APIImportTask already downloads remote image/video/attachment URLs and rewrites them to internal redirect URLs; the Markdown task previously opted out because its attachments live in the zip. - Make the base upload step skip URLs that are already internal, so local zip attachments (resolved to redirect URLs during rewriteMarkdown and uploaded from the archive in onAllTasksCompleted) pass through untouched while remote URLs are fetched and re-hosted. Also guards the URL rewrite against nodes not present in the download map. - Introduce IntegrationService.Slab as a distinct, importable service that routes through the Markdown task/processor, so imports are tracked and labelled as "Slab" with no duplicated import logic. - Wire the create API (schema + route), the import settings UI (Slab card and dialog), and a placeholder logo asset. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01AC5Ho2SHBjNpxEAMr5uL6o * Add shell SlabAPIImportTask as a Slab-specific seam Slab imports previously ran through MarkdownAPIImportTask directly. Introduce a thin SlabAPIImportTask subclass so Slab gets its own task name (for scheduling, tracing, and retries) and a dedicated place to override behavior as Slab exports diverge from the generic Markdown shape. The subclass inherits all conversion/attachment/persistence logic and only overrides scheduleNextTask to keep the whole import chain on the Slab class. MarkdownImportsProcessor now selects the task implementation by the import's service when scheduling the first task. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01AC5Ho2SHBjNpxEAMr5uL6o * Unwrap single root "slab" directory in Slab imports Slab exports wrap the entire workspace in a single top-level directory named "slab". Without handling this, the import produces one "slab" collection containing everything, instead of mapping each workspace area to its own collection. Add a `resolveCollectionRootNodes` seam on the Markdown bootstrap phase (default: pass entries through unchanged) and override it in SlabAPIImportTask to descend into a lone, case-insensitive "slab" root directory so its child directories become collections. Paths are left intact, so the attachment manifest, completion re-walk, and internal-link resolution stay consistent. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01AC5Ho2SHBjNpxEAMr5uL6o * Use the filename, not the first heading, as the title for Slab imports In Slab a document's leading heading is real content, not its title — the filename is authoritative. Add an `extractTitle` option to DocumentConverter.convert (default true, preserving existing callers) that, when false, skips lifting a leading H1 into the title and leaves it in the body. Expose it through a `shouldExtractTitleFromHeading` seam on the Markdown task and override it in SlabAPIImportTask. With no extracted title, the page falls back to the filename-derived title. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01AC5Ho2SHBjNpxEAMr5uL6o * Update logo * Narrow MarkdownAPIImportTask generic back to Markdown Slab imports now run through SlabAPIImportTask, so the base Markdown task no longer handles the Slab service directly and its generic can return to Markdown-only. SlabAPIImportTask keeps a Markdown | Slab union on its scheduleNextTask override, which is required so the override stays a valid (contravariant) override of the base's Markdown-typed parameter. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01AC5Ho2SHBjNpxEAMr5uL6o * Optimised images with calibre/image-actions * reorder * Move Slab importer into its own plugin Restructure the Slab importer to live in plugins/slab, mirroring the Notion plugin, instead of being threaded through the core Markdown importer. - plugins/slab/server registers SlabImportsProcessor (Hook.Processor) and SlabAPIImportTask (Hook.Task). The processor extends MarkdownImportsProcessor to claim the Slab service and schedule the Slab task; the task keeps its Slab-specific overrides (remote image download, root "slab" dir unwrap, filename-as-title). - plugins/slab/client registers the Slab import card (Hook.Imports) and owns the import dialog. - Revert MarkdownImportsProcessor to Markdown-only and drop the hardcoded Slab card from the Import settings screen. The Slab service enum, import schema, and create route remain in core, as the Notion plugin's equivalents do. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01AC5Ho2SHBjNpxEAMr5uL6o * Generalize DropToImport to accept an importable service DropToImport previously branched on `format` to map MarkdownZip/JSON/Slab to specific imports.create calls, with a dead collections.import fallback. Replace this with a single `service` prop and one generic imports.create call. Core no longer hardcodes any service name (notably the Slab plugin service), and the Markdown, JSON, and Slab dialogs each pass their service. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01AC5Ho2SHBjNpxEAMr5uL6o --------- Co-authored-by: Claude <noreply@anthropic.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
518 lines
16 KiB
TypeScript
518 lines
16 KiB
TypeScript
import { DocumentConverter } from "./DocumentConverter";
|
|
|
|
describe("DocumentConverter", () => {
|
|
describe("convert", () => {
|
|
describe("csv", () => {
|
|
it("should convert csv to markdown table", async () => {
|
|
const csv = `name,age
|
|
John,25
|
|
Jane,24`;
|
|
|
|
const result = await DocumentConverter.convert(
|
|
csv,
|
|
"test.csv",
|
|
"text/csv"
|
|
);
|
|
|
|
// CSV is converted to a markdown table
|
|
expect(result.text).toContain("| name | age |");
|
|
expect(result.text).toContain("John");
|
|
expect(result.text).toContain("Jane");
|
|
expect(result.title).toEqual("");
|
|
});
|
|
|
|
it("should handle csv with semicolon delimiter", async () => {
|
|
const csv = `name;age
|
|
John;25
|
|
"Joan ""the bone"", Anne";24`;
|
|
|
|
const result = await DocumentConverter.convert(
|
|
csv,
|
|
"test.csv",
|
|
"text/csv"
|
|
);
|
|
|
|
expect(result.text).toContain("| name | age |");
|
|
expect(result.text).toContain("John");
|
|
expect(result.text).toContain('Joan "the bone", Anne');
|
|
});
|
|
|
|
it("should handle csv with title row before headers", async () => {
|
|
// Some financial exports have a title row before the actual headers
|
|
const csv = `"Report for Account"
|
|
|
|
"Symbol","Name","Value",
|
|
"ABC","Test Corp","$100",
|
|
"XYZ","Other Inc","$200",`;
|
|
|
|
const result = await DocumentConverter.convert(
|
|
csv,
|
|
"test.csv",
|
|
"text/csv"
|
|
);
|
|
|
|
// The actual data headers should be used, not the title row
|
|
expect(result.text).toContain("| Symbol | Name | Value |");
|
|
expect(result.text).toContain("ABC");
|
|
expect(result.text).toContain("Test Corp");
|
|
expect(result.text).toContain("XYZ");
|
|
});
|
|
|
|
it("should handle csv with trailing comma on each line", async () => {
|
|
const csv = `name,age,city,
|
|
John,25,NYC,
|
|
Jane,24,LA,`;
|
|
|
|
const result = await DocumentConverter.convert(
|
|
csv,
|
|
"test.csv",
|
|
"text/csv"
|
|
);
|
|
|
|
expect(result.text).toContain("| name | age | city |");
|
|
expect(result.text).toContain("John");
|
|
expect(result.text).toContain("Jane");
|
|
// Should not have trailing empty column
|
|
expect(result.text).not.toContain("| city | |");
|
|
expect(result.text).not.toContain("| city | |");
|
|
});
|
|
|
|
it("should preserve intentionally empty cells at end of rows", async () => {
|
|
const csv = `name,age,city
|
|
John,25,NYC
|
|
Jane,24,`;
|
|
|
|
const result = await DocumentConverter.convert(
|
|
csv,
|
|
"test.csv",
|
|
"text/csv"
|
|
);
|
|
|
|
expect(result.text).toContain("| name | age | city |");
|
|
expect(result.text).toContain("John");
|
|
expect(result.text).toContain("NYC");
|
|
// Jane's row should have 3 columns (empty city preserved)
|
|
expect(result.text).toMatch(/\| Jane \| 24\s*\|\s*\|/);
|
|
});
|
|
});
|
|
|
|
describe("html", () => {
|
|
it("should extract title from H1", async () => {
|
|
const html = "<h1>My Title</h1><p>Content here</p>";
|
|
const result = await DocumentConverter.convert(
|
|
html,
|
|
"test.html",
|
|
"text/html"
|
|
);
|
|
|
|
expect(result.title).toEqual("My Title");
|
|
expect(result.text).toContain("Content here");
|
|
expect(result.text).not.toContain("My Title");
|
|
});
|
|
|
|
it("should extract emoji from start", async () => {
|
|
const html = "<p>🚀 Launch content</p>";
|
|
const result = await DocumentConverter.convert(
|
|
html,
|
|
"test.html",
|
|
"text/html"
|
|
);
|
|
|
|
expect(result.icon).toEqual("🚀");
|
|
expect(result.text).not.toMatch(/^🚀/);
|
|
});
|
|
});
|
|
|
|
describe("markdown", () => {
|
|
it("should extract title from H1", async () => {
|
|
const md = "# My Title\n\nContent here";
|
|
const result = await DocumentConverter.convert(
|
|
md,
|
|
"test.md",
|
|
"text/markdown"
|
|
);
|
|
|
|
expect(result.title).toEqual("My Title");
|
|
expect(result.text).toContain("Content here");
|
|
expect(result.text).not.toContain("My Title");
|
|
});
|
|
|
|
it("should return empty title when no H1", async () => {
|
|
const md = "## Subtitle\n\nContent here";
|
|
const result = await DocumentConverter.convert(
|
|
md,
|
|
"test.md",
|
|
"text/markdown"
|
|
);
|
|
|
|
expect(result.title).toEqual("");
|
|
expect(result.text).toContain("Subtitle");
|
|
});
|
|
|
|
it("should keep the leading H1 in the body when extractTitle is false", async () => {
|
|
const md = "# My Title\n\nContent here";
|
|
const result = await DocumentConverter.convert(
|
|
md,
|
|
"test.md",
|
|
"text/markdown",
|
|
{ extractTitle: false }
|
|
);
|
|
|
|
expect(result.title).toEqual("");
|
|
expect(result.text).toContain("My Title");
|
|
expect(result.text).toContain("Content here");
|
|
});
|
|
|
|
it("should convert frontmatter to yaml codeblock", async () => {
|
|
const md = `---
|
|
title: Test Document
|
|
date: 2024-01-15
|
|
tags: [test, markdown]
|
|
---
|
|
|
|
# My Title
|
|
|
|
Content after frontmatter`;
|
|
const result = await DocumentConverter.convert(
|
|
md,
|
|
"test.md",
|
|
"text/markdown"
|
|
);
|
|
|
|
// Frontmatter should be converted to a YAML codeblock
|
|
expect(result.text).toContain("```yaml");
|
|
expect(result.text).toContain("title: Test Document");
|
|
expect(result.text).toContain("date: 2024-01-15");
|
|
expect(result.text).toContain("tags: [test, markdown]");
|
|
expect(result.text).toContain("```");
|
|
// Content should still be present
|
|
expect(result.text).toContain("Content after frontmatter");
|
|
// H1 should be extracted as title
|
|
expect(result.title).toEqual("My Title");
|
|
});
|
|
|
|
it("should handle markdown without frontmatter", async () => {
|
|
const md = "# Title\n\nRegular content";
|
|
const result = await DocumentConverter.convert(
|
|
md,
|
|
"test.md",
|
|
"text/markdown"
|
|
);
|
|
|
|
expect(result.title).toEqual("Title");
|
|
expect(result.text).toContain("Regular content");
|
|
expect(result.text).not.toContain("```yaml");
|
|
});
|
|
|
|
it("should handle frontmatter with no content after", async () => {
|
|
const md = `---
|
|
title: Only Frontmatter
|
|
---`;
|
|
const result = await DocumentConverter.convert(
|
|
md,
|
|
"test.md",
|
|
"text/markdown"
|
|
);
|
|
|
|
expect(result.text).toContain("```yaml");
|
|
expect(result.text).toContain("title: Only Frontmatter");
|
|
expect(result.text).toContain("```");
|
|
expect(result.title).toEqual("");
|
|
});
|
|
|
|
it("should not convert incomplete frontmatter", async () => {
|
|
const md = `---
|
|
title: Test
|
|
Content without closing delimiter`;
|
|
const result = await DocumentConverter.convert(
|
|
md,
|
|
"test.md",
|
|
"text/markdown"
|
|
);
|
|
|
|
// Should not convert as it's not proper frontmatter
|
|
expect(result.text).not.toContain("```yaml");
|
|
expect(result.text).toContain("title: Test");
|
|
});
|
|
|
|
it("should not convert frontmatter if not at start", async () => {
|
|
const md = `# Title
|
|
|
|
Some content
|
|
|
|
---
|
|
title: Test
|
|
---
|
|
|
|
More content`;
|
|
const result = await DocumentConverter.convert(
|
|
md,
|
|
"test.md",
|
|
"text/markdown"
|
|
);
|
|
|
|
// Should not convert as frontmatter must be at the start
|
|
expect(result.text).not.toContain("```yaml");
|
|
});
|
|
|
|
it("should handle invalid YAML in frontmatter", async () => {
|
|
const md = `---
|
|
invalid: yaml: content: here
|
|
---
|
|
|
|
Content`;
|
|
const result = await DocumentConverter.convert(
|
|
md,
|
|
"test.md",
|
|
"text/markdown"
|
|
);
|
|
|
|
// Should not convert invalid YAML
|
|
expect(result.text).not.toContain("```yaml");
|
|
});
|
|
});
|
|
});
|
|
|
|
describe("htmlToProsemirror", () => {
|
|
it("should convert basic HTML to Prosemirror", async () => {
|
|
const html = "<p>Hello world</p>";
|
|
|
|
const doc = await DocumentConverter.htmlToProsemirror(html);
|
|
|
|
expect(doc.type.name).toBe("doc");
|
|
expect(doc.content.childCount).toBe(1);
|
|
expect(doc.content.child(0).type.name).toBe("paragraph");
|
|
expect(doc.content.child(0).textContent).toBe("Hello world");
|
|
});
|
|
|
|
it("should convert HTML with heading", async () => {
|
|
const html = "<h1>Title</h1><p>Content</p>";
|
|
|
|
const doc = await DocumentConverter.htmlToProsemirror(html);
|
|
|
|
expect(doc.content.childCount).toBe(2);
|
|
expect(doc.content.child(0).type.name).toBe("heading");
|
|
expect(doc.content.child(0).attrs.level).toBe(1);
|
|
expect(doc.content.child(0).textContent).toBe("Title");
|
|
expect(doc.content.child(1).type.name).toBe("paragraph");
|
|
});
|
|
|
|
it("should remove script tags", async () => {
|
|
const html = "<p>Safe content</p><script>alert('xss')</script>";
|
|
|
|
const doc = await DocumentConverter.htmlToProsemirror(html);
|
|
|
|
expect(doc.textContent).toBe("Safe content");
|
|
expect(doc.textContent).not.toContain("alert");
|
|
});
|
|
|
|
it("should remove style tags", async () => {
|
|
const html = "<style>body { color: red; }</style><p>Content</p>";
|
|
|
|
const doc = await DocumentConverter.htmlToProsemirror(html);
|
|
|
|
expect(doc.textContent).toBe("Content");
|
|
expect(doc.textContent).not.toContain("color");
|
|
});
|
|
|
|
it("should handle Buffer input", async () => {
|
|
const html = Buffer.from("<p>From buffer</p>", "utf8");
|
|
|
|
const doc = await DocumentConverter.htmlToProsemirror(html);
|
|
|
|
expect(doc.content.child(0).textContent).toBe("From buffer");
|
|
});
|
|
|
|
it("should convert HTML with lists", async () => {
|
|
const html = "<ul><li>Item 1</li><li>Item 2</li></ul>";
|
|
|
|
const doc = await DocumentConverter.htmlToProsemirror(html);
|
|
|
|
expect(doc.content.childCount).toBe(1);
|
|
expect(doc.content.child(0).type.name).toBe("bullet_list");
|
|
expect(doc.content.child(0).content.childCount).toBe(2);
|
|
});
|
|
|
|
it("should convert HTML with bold and italic", async () => {
|
|
const html = "<p><strong>Bold</strong> and <em>italic</em></p>";
|
|
|
|
const doc = await DocumentConverter.htmlToProsemirror(html);
|
|
|
|
const paragraph = doc.content.child(0);
|
|
expect(paragraph.type.name).toBe("paragraph");
|
|
|
|
// Check that marks are applied
|
|
const boldText = paragraph.content.child(0);
|
|
expect(boldText.text).toBe("Bold");
|
|
expect(boldText.marks.some((m) => m.type.name === "strong")).toBe(true);
|
|
|
|
const italicText = paragraph.content.child(2);
|
|
expect(italicText.text).toBe("italic");
|
|
expect(italicText.marks.some((m) => m.type.name === "em")).toBe(true);
|
|
});
|
|
|
|
it("should handle full HTML document", async () => {
|
|
const html = `
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Test</title>
|
|
<meta charset="utf-8">
|
|
</head>
|
|
<body>
|
|
<h1>Document Title</h1>
|
|
<p>Paragraph content</p>
|
|
</body>
|
|
</html>
|
|
`;
|
|
|
|
const doc = await DocumentConverter.htmlToProsemirror(html);
|
|
|
|
expect(doc.content.childCount).toBe(2);
|
|
expect(doc.content.child(0).type.name).toBe("heading");
|
|
expect(doc.content.child(0).textContent).toBe("Document Title");
|
|
expect(doc.content.child(1).type.name).toBe("paragraph");
|
|
expect(doc.content.child(1).textContent).toBe("Paragraph content");
|
|
});
|
|
|
|
it("should remove emoticon images", async () => {
|
|
const html = `<p>Hello <img class="emoticon" src="smile.png" alt=":)"> world</p>`;
|
|
|
|
const doc = await DocumentConverter.htmlToProsemirror(html);
|
|
|
|
// Emoticon image should be removed, text content remains
|
|
expect(doc.textContent).not.toContain(":)");
|
|
expect(doc.textContent).toContain("Hello");
|
|
expect(doc.textContent).toContain("world");
|
|
});
|
|
|
|
it("should remove Jira icon images", async () => {
|
|
const html = `
|
|
<p>Issue: <span class="jira-issue-key"><img class="icon" src="icon.png">ABC-123</span></p>
|
|
`;
|
|
|
|
const doc = await DocumentConverter.htmlToProsemirror(html);
|
|
|
|
expect(doc.textContent).toBe("Issue: ABC-123");
|
|
});
|
|
|
|
it("should apply Confluence image sizing", async () => {
|
|
const html = `
|
|
<p><img src="image.png" data-width="800" data-height="600" width="400"></p>
|
|
`;
|
|
|
|
const doc = await DocumentConverter.htmlToProsemirror(html);
|
|
|
|
const paragraph = doc.content.child(0);
|
|
const image = paragraph.content.child(0);
|
|
expect(image.type.name).toBe("image");
|
|
expect(image.attrs.width).toBe(400);
|
|
expect(image.attrs.height).toBe(300);
|
|
});
|
|
|
|
it("should extract dimensions from PNG data URI images", async () => {
|
|
// Minimal 2x3 PNG (IHDR: width=2, height=3)
|
|
const pngBuffer = Buffer.alloc(33);
|
|
// PNG signature
|
|
Buffer.from([0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a]).copy(
|
|
pngBuffer
|
|
);
|
|
// IHDR chunk length (13 bytes)
|
|
pngBuffer.writeUInt32BE(13, 8);
|
|
// "IHDR"
|
|
Buffer.from("IHDR").copy(pngBuffer, 12);
|
|
// Width = 200
|
|
pngBuffer.writeUInt32BE(200, 16);
|
|
// Height = 150
|
|
pngBuffer.writeUInt32BE(150, 20);
|
|
|
|
const base64 = pngBuffer.toString("base64");
|
|
const html = `<p><img src="data:image/png;base64,${base64}"></p>`;
|
|
|
|
const doc = await DocumentConverter.htmlToProsemirror(html);
|
|
|
|
const paragraph = doc.content.child(0);
|
|
const image = paragraph.content.child(0);
|
|
expect(image.type.name).toBe("image");
|
|
expect(image.attrs.width).toBe(200);
|
|
expect(image.attrs.height).toBe(150);
|
|
});
|
|
|
|
it("should extract dimensions from JPEG data URI images", async () => {
|
|
// Minimal JPEG with SOF0 marker
|
|
const jpegBuffer = Buffer.alloc(20);
|
|
// JPEG SOI marker
|
|
jpegBuffer[0] = 0xff;
|
|
jpegBuffer[1] = 0xd8;
|
|
// SOF0 marker
|
|
jpegBuffer[2] = 0xff;
|
|
jpegBuffer[3] = 0xc0;
|
|
// Segment length
|
|
jpegBuffer.writeUInt16BE(17, 4);
|
|
// Precision
|
|
jpegBuffer[6] = 8;
|
|
// Height = 300
|
|
jpegBuffer.writeUInt16BE(300, 7);
|
|
// Width = 400
|
|
jpegBuffer.writeUInt16BE(400, 9);
|
|
|
|
const base64 = jpegBuffer.toString("base64");
|
|
const html = `<p><img src="data:image/jpeg;base64,${base64}"></p>`;
|
|
|
|
const doc = await DocumentConverter.htmlToProsemirror(html);
|
|
|
|
const paragraph = doc.content.child(0);
|
|
const image = paragraph.content.child(0);
|
|
expect(image.type.name).toBe("image");
|
|
expect(image.attrs.width).toBe(400);
|
|
expect(image.attrs.height).toBe(300);
|
|
});
|
|
|
|
it("should extract dimensions from GIF data URI images", async () => {
|
|
// Minimal GIF header
|
|
const gifBuffer = Buffer.alloc(10);
|
|
// GIF signature
|
|
Buffer.from("GIF89a").copy(gifBuffer);
|
|
// Width = 320 (little-endian)
|
|
gifBuffer.writeUInt16LE(320, 6);
|
|
// Height = 240 (little-endian)
|
|
gifBuffer.writeUInt16LE(240, 8);
|
|
|
|
const base64 = gifBuffer.toString("base64");
|
|
const html = `<p><img src="data:image/gif;base64,${base64}"></p>`;
|
|
|
|
const doc = await DocumentConverter.htmlToProsemirror(html);
|
|
|
|
const paragraph = doc.content.child(0);
|
|
const image = paragraph.content.child(0);
|
|
expect(image.type.name).toBe("image");
|
|
expect(image.attrs.width).toBe(320);
|
|
expect(image.attrs.height).toBe(240);
|
|
});
|
|
|
|
it("should not override existing width/height on data URI images", async () => {
|
|
// PNG with dimensions 200x150 but HTML attributes say 100x75
|
|
const pngBuffer = Buffer.alloc(33);
|
|
Buffer.from([0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a]).copy(
|
|
pngBuffer
|
|
);
|
|
pngBuffer.writeUInt32BE(13, 8);
|
|
Buffer.from("IHDR").copy(pngBuffer, 12);
|
|
pngBuffer.writeUInt32BE(200, 16);
|
|
pngBuffer.writeUInt32BE(150, 20);
|
|
|
|
const base64 = pngBuffer.toString("base64");
|
|
const html = `<p><img src="data:image/png;base64,${base64}" width="100" height="75"></p>`;
|
|
|
|
const doc = await DocumentConverter.htmlToProsemirror(html);
|
|
|
|
const paragraph = doc.content.child(0);
|
|
const image = paragraph.content.child(0);
|
|
expect(image.type.name).toBe("image");
|
|
// Should use the HTML attributes, not the parsed dimensions
|
|
expect(image.attrs.width).toBe(100);
|
|
expect(image.attrs.height).toBe(75);
|
|
});
|
|
});
|
|
});
|