Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Fix code sample indentation of the checkAssertions().
Browse files Browse the repository at this point in the history
  • Loading branch information
jodator committed Jun 19, 2019
1 parent 9c5f0f6 commit 5caa173
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions tests/_utils/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,19 +49,19 @@ const utils = {
*
* Usage:
*
* it( 'test', () => {
* // Test bootstrapping...
* it( 'test', () => {
* // Test bootstrapping...
*
* const assertEdge = () => {
* // expect();
* };
* const assertEdge = () => {
* // expect();
* };
*
* const assertAll = () => {
* // expect();
* };
* const assertAll = () => {
* // expect();
* };
*
* testUtils.checkAssertions( assertEdge, assertAll );
* } );
* testUtils.checkAssertions( assertEdge, assertAll );
* } );
*
* @param {...Function} assertions Functions that will be executed.
*/
Expand Down

0 comments on commit 5caa173

Please sign in to comment.