I'm trying to do a simple test to see if Quick and Nimble are working properly, but they're not. Here is my simple test which is supposed to break:
import Quick
import Nimble
class SomeSpec: QuickSpec {
override func spec() {
describe("bad test") {
it("does not pass") {
expect("good").to(equal("bad"))
}
}
}
}
But if I run the test, I'll see output:
Executed 0 tests, with 0 failures (0 unexpected) in 0.000 (0.004) seconds
I don't know why zero tests are being run. I did install Quick and Nimble with Swift Package Manager instead of Cocoapods, if that might be a reason for the problem.