'use strict';


describe('Forum E2E Tests', function() {

  describe('Navigating to Forum when signed out', function() {

    it('should redirect to signin page when going to /forum', function() {

      browser.get('http://localhost:3001/forum');

      expect(browser.getCurrentUrl()).toBe('http://localhost:3001/authentication/signin');

    });

  });

});


전무후무한 e2e테스트..