Skip to content

Commit ffb250f

Browse files
Update packages/oauth/src/state-stores/spec-utils.ts
Co-authored-by: Eden Zimbelman <eden.zimbelman@salesforce.com>
1 parent 937529a commit ffb250f

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

packages/oauth/src/state-stores/spec-utils.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,9 @@ export class StateStoreChaiTestRunner {
5555
const installUrlOptions = { scopes: ['channels:read'] };
5656
for (let i = 0; i < 100; i++) {
5757
// generate other states
58-
await stateStore.generateStateParam(installUrlOptions, new Date());
58+
const date = new Date();
59+
await stateStore.generateStateParam(installUrlOptions, date);
60+
console.log('\tgenerateStateParam:', i, 100, date);
5961
}
6062
const state = await stateStore.generateStateParam(installUrlOptions, new Date());
6163

0 commit comments

Comments
 (0)