Skip to content

Commit

Permalink
🎨
Browse files Browse the repository at this point in the history
  • Loading branch information
bonkalol committed Feb 11, 2024
1 parent 3cb95ff commit 87c701c
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
1 change: 0 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ _Note: Gaps between patch versions are faulty, broken or test releases._

#### :boom: Breaking Change

* Removed export of deprecated Helpers class from tests/helpers `tests/helpers`
* `tests/helpers/network/interceptor` no longer has a named export, the `RequestInterceptor` class is now exported as the default export `tests/helpers/network/interceptor`

## v3.65.0 (2023-02-09)
Expand Down
31 changes: 31 additions & 0 deletions tests/helpers/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,34 @@ export {
Mock

};

/**
* @deprecated - use static methods instead
*/
export class Helpers {
/** @see [[Request]] */
request: Request = new Request();

/** @see [[Utils]] */
utils: Utils = new Utils();

/** @see [[Component]] */
component: Component = new Component();

/** @see [[Gestures]] */
gestures: Gestures = new Gestures();

/** @see [[BOM]] */
bom: BOM = new BOM();

/** @see [[Router]] */
router: Router = new Router();

/** @see [[DOM]] */
dom: DOM = new DOM();

/** @see [[Scroll]] */
scroll: Scroll = new Scroll();
}

export default new Helpers();

0 comments on commit 87c701c

Please sign in to comment.