Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
it('allows the actor to navigate forward in the browser history', () => Bernie.attemptsTo(
Navigate.to(`chrome://version/`),
Navigate.to(`chrome://accessibility/`),
Navigate.back(),
Navigate.forward(),
Ensure.that(Website.url(), endsWith('accessibility/')),
));
it('allows the actor to navigate back in the browser history', () => Bernie.attemptsTo(
Navigate.to(`chrome://version/`),
Navigate.to(`chrome://accessibility/`),
Navigate.back(),
Ensure.that(Website.url(), endsWith('version/')),
));