FlareTestError
class FlareTestError extends ErrorThrown by the in-process test harness when the harness itself rejects an invalid input or detects misuse.
Distinct from FlareError (the app’s HTTP error contract) and from runtime
errors: assert instanceof FlareTestError to confirm a failure originated in
the harness, not the app under test.
How you get one
Section titled “How you get one”new FlareTestError(message?)
Properties
Section titled “Properties”name: "FlareTestError"Learn: Testing