Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion types/jasmine/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ declare function afterEach(action: jasmine.ImplementationCallback, timeout?: num
declare function beforeAll(action: jasmine.ImplementationCallback, timeout?: number): void;

/**
* Run some shared teardown once before all of the specs in the describe are run.
* Run some shared teardown once after all of the specs in the describe are run.
* Note: Be careful, sharing the teardown from a afterAll makes it easy to accidentally leak state between your specs so that they erroneously pass or fail.
* @param action Function that contains the code to teardown your specs.
* @param timeout Custom timeout for an async afterAll
Expand Down
2 changes: 1 addition & 1 deletion types/jasmine/v3/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ declare function afterEach(action: jasmine.ImplementationCallback, timeout?: num
declare function beforeAll(action: jasmine.ImplementationCallback, timeout?: number): void;

/**
* Run some shared teardown once before all of the specs in the describe are run.
* Run some shared teardown once after all of the specs in the describe are run.
* Note: Be careful, sharing the teardown from a afterAll makes it easy to accidentally leak state between your specs so that they erroneously pass or fail.
* @param action Function that contains the code to teardown your specs.
* @param timeout Custom timeout for an async afterAll
Expand Down