2022-06-06 18:25:58 +04:00

11 lines
362 B
Swift

// Created by Cal Stephens on 1/28/22.
// Copyright © 2022 Airbnb Inc. All rights reserved.
enum TestHelpers {
/// Whether or not snapshot tests are currently running in a test target
static var snapshotTestsAreRunning = false
/// Whether or not performance tests are currently running in a test target
static var performanceTestsAreRunning = false
}