This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Foundation | |
import SnapshotTesting | |
import XCTest | |
/// Returns a valid snapshot directory under the project’s `ci_scripts`. | |
/// | |
/// - Parameter file: A `StaticString` representing the current test’s filename. | |
/// - Returns: A directory for the snapshots. | |
/// - Note: It makes strong assumptions about the structure of the project; namely, | |
/// it expects the project to consist of a single package located at the root. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# use vi keys | |
set -g status-keys vi | |
setw -g mode-keys vi | |
# remap prefix to Control + a | |
set -g prefix C-a | |
unbind C-b | |
bind C-a send-prefix | |
# force a reload of the config file |