https://github.com/jelhan/ember-cli-browser-navigation-button-test-helpers
Test helper to simulate browser's back and forward buttons in acceptance tests of Ember applications.
https://github.com/jelhan/ember-cli-browser-navigation-button-test-helpers
ember ember-addons ember-testing test-helpers
Last synced: 10 months ago
JSON representation
Test helper to simulate browser's back and forward buttons in acceptance tests of Ember applications.
- Host: GitHub
- URL: https://github.com/jelhan/ember-cli-browser-navigation-button-test-helpers
- Owner: jelhan
- License: mit
- Created: 2016-04-10T21:11:38.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2025-07-02T15:33:24.000Z (12 months ago)
- Last Synced: 2025-08-09T05:28:02.347Z (10 months ago)
- Topics: ember, ember-addons, ember-testing, test-helpers
- Language: JavaScript
- Homepage:
- Size: 967 KB
- Stars: 1
- Watchers: 2
- Forks: 5
- Open Issues: 26
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
# ember-cli-browser-navigation-button-test-helper
Test helper to simulate browser's back and forward buttons in acceptance tests
of Ember applications.
Compatibility
------------------------------------------------------------------------------
* Ember.js v3.20 or above
* Ember CLI v3.20 or above
* Node.js v12 or above
Installation
------------------------------------------------------------------------------
```
ember install ember-cli-browser-navigation-button-test-helper
```
Usage
------------------------------------------------------------------------------
This addon exports three test helpers from `ember-cli-browser-navigation-button-test-helper/test-support`:
- `setupBrowserNavigationButtons`,
- `backButton` and
- `forwardButton`.
`setupBrowserNavigationButtons` must be called in every acceptance test which
uses `backButton` and `forwardButton` _before_ `visit()`. It registers a service
to track and manage the history.
`backbutton` and `forwardButton` simulates the browser's back and forward
buttons by firing a transition using `RouterService.transitionTo()`.
Please find an usage example [in this acceptance test](https://github.com/jelhan/ember-cli-browser-navigation-button-test-helpers/blob/master/tests/acceptance/browser-navigation-buttons-test.js).
Contributing
------------------------------------------------------------------------------
See the [Contributing](CONTRIBUTING.md) guide for details.
License
------------------------------------------------------------------------------
This project is licensed under the [MIT License](LICENSE.md).