mirror of
https://github.com/mas-cli/mas
synced 2025-03-06 23:57:21 +00:00
Simplify test exclusion.
Partial #596 Signed-off-by: Ross Goldberg <484615+rgoldberg@users.noreply.github.com>
This commit is contained in:
parent
6a37882311
commit
f49d63a4f3
3 changed files with 3 additions and 3 deletions
Tests/masTests/Commands
|
@ -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())
|
||||
}
|
||||
|
|
|
@ -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)
|
||||
}
|
||||
|
|
|
@ -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())
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue