it('should display an error if the page does not exist', function() {
      browser.get('build/docs/index-production.html#!/api/does/not/exist');
      var mainHeader = element(by.css('.main-body h1 '));
      expect(mainHeader.getText()).toEqual('Oops!');
    });