From c2fcf7e5aaa4e165bcad0f19807c705496ce3210 Mon Sep 17 00:00:00 2001 From: Ben Chatelain Date: Sat, 25 Nov 2023 13:00:37 -0700 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=A1=20Document=20deprecated=20AccountC?= =?UTF-8?q?ommandSpec=20and=20SignInCommandSpec?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Tests/MasKitTests/Commands/AccountCommandSpec.swift | 4 +++- Tests/MasKitTests/Commands/SignInCommandSpec.swift | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Tests/MasKitTests/Commands/AccountCommandSpec.swift b/Tests/MasKitTests/Commands/AccountCommandSpec.swift index 2a0770a..b78f16e 100644 --- a/Tests/MasKitTests/Commands/AccountCommandSpec.swift +++ b/Tests/MasKitTests/Commands/AccountCommandSpec.swift @@ -11,12 +11,14 @@ import Quick @testable import MasKit +// Deprecated test public class AccountCommandSpec: QuickSpec { override public func spec() { beforeSuite { MasKit.initialize() } - describe("Account command") { + // account command disabled since macOS 12 Monterey https://github.com/mas-cli/mas#%EF%B8%8F-known-issues + xdescribe("Account command") { xit("displays active account") { let cmd = AccountCommand() let result = cmd.run(AccountCommand.Options()) diff --git a/Tests/MasKitTests/Commands/SignInCommandSpec.swift b/Tests/MasKitTests/Commands/SignInCommandSpec.swift index 1663f65..5f44888 100644 --- a/Tests/MasKitTests/Commands/SignInCommandSpec.swift +++ b/Tests/MasKitTests/Commands/SignInCommandSpec.swift @@ -11,12 +11,14 @@ import Quick @testable import MasKit +// Deprecated test public class SignInCommandSpec: QuickSpec { override public func spec() { beforeSuite { MasKit.initialize() } - describe("signin command") { + // account command disabled since macOS 10.13 High Sierra https://github.com/mas-cli/mas#%EF%B8%8F-known-issues + xdescribe("signin command") { xit("signs in") { let cmd = SignInCommand() let result = cmd.run(SignInCommand.Options(username: "", password: "", dialog: false))