it('should not be logged in if stored token is expired', () => {
    mockLocalStorage.setItem('auth_token', mockTokenExpired);
    expect(authService.isLoggedIn()).toBe(false);
  });