UNPKG

mocha-allure-reporter

Version:
17 lines (12 loc) 359 B
describe("Before all tests", function() { describe("broken before", function() { before(function() { throw new Error("you broke the before hook"); }); it("a test", function() {}); }); describe("before not broken", function() { before(function() {}); it("a test", function() {}); }); });