feat: conditional buy me a coffee

This commit is contained in:
Michael Freno
2026-01-10 10:02:51 -05:00
parent eebccc55d9
commit cb689a4cbc
6 changed files with 88 additions and 36 deletions

View File

@@ -0,0 +1,17 @@
//
// AppStoreDetectorTests.swift
// GazeTests
//
// Created by Mike Freno on 1/10/26.
//
@testable import Gaze
import Testing
struct AppStoreDetectorTests {
@Test func isAppStoreVersionReturnsFalseInDebug() {
// In test/debug builds, should always return false
#expect(AppStoreDetector.isAppStoreVersion == false)
}
}