Skip to content

Instantly share code, notes, and snippets.

@sudodoki
Created October 18, 2013 17:57
Show Gist options
  • Select an option

  • Save sudodoki/7045452 to your computer and use it in GitHub Desktop.

Select an option

Save sudodoki/7045452 to your computer and use it in GitHub Desktop.
E2E test fail
describe("E2E: Testing Routes", function() {
console.log('this e2e ran')
beforeEach(function() {
browser().navigateTo('/');
});
it('should jump to the /videos path when / is accessed', function() {
browser().navigateTo('/#/');
expect(browser().location().hash()).toBe("#/chart/demographics");
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment