- Prevents compilation error when building Spectre on Xcode 13.
Unclaimed project
Are you a maintainer of Spectre? Claim this project to take control of your public changelog and roadmap.
Reporter type can be set via an environment variable. For example, to use dot reporter:
$ env SPECTRE_REPORTER=dot swift test
Additional arguments and options can be passed to Spectre using the
SPECTRE_ADDOPTS environment variable, for example:
$ SPECTRE_A...
Using Spectre in Xcode has be re-hauled, there are now describe and it
methods on XCTestCase which can be used. When used, these tests will be ran
directly and reported as XCTest failures and therefore shown in Xcode and
Xcode sidebar as XCTest failures.
Use of the global test context, i.e, global describe and it is no longer
permitted when using Spectre with X...