Skip to content

Commit

Permalink
💡 Document deprecated AccountCommandSpec and SignInCommandSpec
Browse files Browse the repository at this point in the history
  • Loading branch information
phatblat committed Nov 25, 2023
1 parent 8d16065 commit c1ecdd0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion Tests/MasKitTests/Commands/AccountCommandSpec.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down
4 changes: 3 additions & 1 deletion Tests/MasKitTests/Commands/SignInCommandSpec.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit c1ecdd0

Please sign in to comment.