I could not find any Midje function that runs after all facts.
Here is the code:
(background
(before :contents (println "Before All Facts"))
(after :contents (println "After All Facts"))
(before :facts (println "Before Each Fact"))
(after :facts (println "After Each Fact")))
Actual Output is:
Before All Facts
After All Facts
Before Each Fact
After Each Fact
Expected Output is:
Before All Facts
Before Each Fact
After Each Fact
After All Facts