Created
October 18, 2013 17:57
-
-
Save sudodoki/7045452 to your computer and use it in GitHub Desktop.
E2E test fail
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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