it('gets the token', () => {
      const mock = this.mock(localStorageService, 'get')
      authService.getApiToken()
      expect(mock).toHaveBeenCalledWith('api-token')
    })