13 lines
261 B
Swift
13 lines
261 B
Swift
@testable import App
|
|
import Elementary
|
|
import HtmlSnapshotTesting
|
|
import SnapshotTesting
|
|
import XCTest
|
|
|
|
final class SnapshotTestingTests: XCTestCase {
|
|
func testSimple() {
|
|
let doc = MainPage.loggedIn(next: nil)
|
|
assertSnapshot(of: doc, as: .html)
|
|
}
|
|
}
|