// // ImportWalletSnapshotTests.swift // secantTests // // Created by Lukáš Korba on 13.06.2022. // import XCTest import ComposableArchitecture import ImportWallet @testable import secant_testnet class ImportWalletSnapshotTests: XCTestCase { func testImportWalletSnapshot() throws { let store = StoreOf( initialState: .initial ) { ImportWallet() } addAttachments(ImportWalletView(store: store)) } func testImportBirthdaySnapshot() throws { let store = StoreOf( initialState: .initial ) { ImportWallet() } addAttachments(ImportBirthdayView(store: store)) } }