Skip to content

Commit

Permalink
temp fix for login
Browse files Browse the repository at this point in the history
  • Loading branch information
clauyan committed Nov 28, 2024
1 parent 2aa1e71 commit 228d7f3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions loadtest/usecases/1_login.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,12 @@ import { loginPage } from "../pages/login.ts";
import { defaultHttpCheck, defaultTimingCheck } from "../util/checks.ts";
import { getDefaultOptions } from "../util/config.ts";
import { wrapTestFunction } from "../util/usecase-wrapper.ts";
import { getDefaultUserMix } from "../util/users.ts";
import { UserMix } from "../util/users.ts";

const successfulLoginCounter = new Counter("successful_logins_counter");
const successfulLoginDuration = new Trend("successful_logins_duration", true);
const users = getDefaultUserMix();
// TODO: delete once proper users are possible
const users = new UserMix({ SYSADMIN: 1 });

export const options = {
...getDefaultOptions(),
Expand Down

0 comments on commit 228d7f3

Please sign in to comment.