This repository has been archived by the owner on Feb 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
include after each hooks into report
- Loading branch information
1 parent
6d8b599
commit c26d048
Showing
4 changed files
with
29 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
describe("Hooks tests", function() { | ||
describe("broken teardown", function() { | ||
beforeEach(function() {}); | ||
it("a test", function() {}); | ||
it("a second test", function() {}); | ||
|
||
afterEach("broken afterEach", function() { | ||
throw new Error("I am broken"); | ||
}); | ||
}); | ||
|
||
describe("broken setup", function() { | ||
beforeEach(function() { | ||
throw new Error("You shall not pass"); | ||
}); | ||
|
||
it("a test", function() {}); | ||
}) | ||
|
||
afterEach("passing afterEach", function() {}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters