-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMarkdownEditorTests.swift
57 lines (56 loc) · 1010 Bytes
/
MarkdownEditorTests.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
//
// File.swift
//
//
// Created by Dave Coleman on 11/8/2024.
//
//import Foundation
//import SwiftUI
//import Testing
//import BaseHelpers
//
//@testable import MarkdownEditor
//
//
//@MainActor @Suite("MarkdownTextView tests", .disabled())
//
//struct MarkdownTextViewTests {
//
// let textView = MarkdownTextView(frame: .zero, textContainer: nil, configuration: .init())
//
// let exampleString = """
// # Header
//
// This is **bold** text.
// """
// let exampleString02 = "This has some **bold** text."
//
//
//
//}
//
//
//
//
//
//
//
//
//
//extension MarkdownTextViewTests {
//
// @Test("Finds markdown matches at all", .disabled())
// func findMarkdownMatches() async {
//
// guard let tcm = textView.textLayoutManager?.textContentManager else { return }
//
// textView.string = TestStrings.Markdown.anotherMarkdownString
//
// // await textView.parseMarkdown()
//
// // printCollection(textView.elements)
//
// }
//
//}
//