💡 Document deprecated AccountCommandSpec and SignInCommandSpec

This commit is contained in:
Ben Chatelain 2023-11-25 13:00:37 -07:00
parent cfc2bef921
commit c2fcf7e5aa
2 changed files with 6 additions and 2 deletions

View file

@ -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())

View file

@ -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))