mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
21 lines
562 B
Crystal
21 lines
562 B
Crystal
module Spectator
|
|
# Toggles indicating how the test spec should execute.
|
|
@[Flags]
|
|
enum RunFlags
|
|
# Indicates whether the test should abort on first failure.
|
|
FailFast
|
|
|
|
# Indicates whether the test should fail if there are no examples.
|
|
FailBlank
|
|
|
|
# Indicates whether the test should be done as a dry-run.
|
|
# Examples won't run, but the output will show that they did.
|
|
DryRun
|
|
|
|
# Indicates whether examples run in a random order.
|
|
Randomize
|
|
|
|
# Indicates whether timing information should be generated.
|
|
Profile
|
|
end
|
|
end
|