2
0
Fork 0
mirror of https://github.com/mas-cli/mas synced 2025-03-06 23:57:21 +00:00

Simplify test exclusion.

Partial 

Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com>
This commit is contained in:
Ross Goldberg 2025-01-01 07:12:06 -05:00
parent 6a37882311
commit f49d63a4f3
No known key found for this signature in database
3 changed files with 3 additions and 3 deletions

View file

@ -17,7 +17,7 @@ public final class InstallSpec: QuickSpec {
MAS.initialize()
}
xdescribe("install command") {
xit("installs apps") {
it("installs apps") {
expect {
try MAS.Install.parse([]).run(appLibrary: MockAppLibrary(), searcher: MockAppStoreSearcher())
}

View file

@ -20,7 +20,7 @@ public final class LuckySpec: QuickSpec {
MAS.initialize()
}
xdescribe("lucky command") {
xit("installs the first app matching a search") {
it("installs the first app matching a search") {
expect {
try MAS.Lucky.parse(["Slack"]).run(appLibrary: MockAppLibrary(), searcher: searcher)
}

View file

@ -17,7 +17,7 @@ public final class PurchaseSpec: QuickSpec {
MAS.initialize()
}
xdescribe("purchase command") {
xit("purchases apps") {
it("purchases apps") {
expect {
try MAS.Purchase.parse(["999"]).run(appLibrary: MockAppLibrary(), searcher: MockAppStoreSearcher())
}