(attachment)
| 8 | |
| 9 | testGroup("Document", () => { |
| 10 | const createDocumentWithAttachment = function (attachment) { |
| 11 | const text = Text.textForAttachmentWithAttributes(attachment) |
| 12 | return new Document([ new Block(text) ]) |
| 13 | } |
| 14 | |
| 15 | test("documents with different attachments are not equal", () => { |
| 16 | const aDoc = createDocumentWithAttachment(new Attachment({ url: "a" })) |
no test coverage detected
searching dependent graphs…