Skip to content

Commit

Permalink
rename some test files
Browse files Browse the repository at this point in the history
  • Loading branch information
pauldambra committed Nov 5, 2024
1 parent c89b578 commit bf840aa
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ describe('loaded() with flags', () => {

// we should call _reloadFeatureFlagsRequest for `group` only after the initial load
// because it ought to be paused until decide returns
expect(instance._send_request).toHaveBeenCalledTimes(1)
expect(instance._send_request).toHaveBeenCalledWith('wat')
expect(instance.featureFlags._reloadFeatureFlagsRequest).toHaveBeenCalledTimes(0)

jest.runOnlyPendingTimers()
Expand Down
2 changes: 1 addition & 1 deletion src/sessionid.ts
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ export class SessionIdManager {
clearTimeout(this._enforceIdleTimeout)
this._enforceIdleTimeout = setTimeout(() => {
// enforce idle timeout a little after the session timeout to ensure the session is reset even without activity
this.resetSessionId()
// this.resetSessionId()
}, this.sessionTimeoutMs * 1.1)
}

Expand Down

0 comments on commit bf840aa

Please sign in to comment.