Skip to content

Commit cc3926f

Browse files
committed
fix: stress tests
1 parent fef7b7d commit cc3926f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

stress-tests/src/oneMillionUsers/createUsers.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import ThirdParty from 'supertokens-node/recipe/thirdparty';
44

55
import { workInBatches, measureTime } from '../common/utils';
66

7-
const TOTAL_USERS = 1000000;
7+
const TOTAL_USERS = 10000;
88

99
const createEmailPasswordUsers = async () => {
1010
console.log(` Creating EmailPassword users...`);

stress-tests/src/oneMillionUsers/generateUsers.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import * as fs from 'fs';
22
import { v4 as uuidv4 } from 'uuid';
33

4-
const USERS_TO_GENERATE = 100000;
4+
const USERS_TO_GENERATE = 1000000;
55
const USERS_PER_JSON = 10000;
66

77
const n = Math.floor(USERS_TO_GENERATE / USERS_PER_JSON);

0 commit comments

Comments
 (0)