Skip to content

Commit

Permalink
test: disable lint to make code more readable
Browse files Browse the repository at this point in the history
  • Loading branch information
PascalinDe committed Jan 17, 2024
1 parent 1b03a2f commit d28bec3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/frontend/tests/formIndex.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ test('Assert no forms are displayed for empty list', async ({ page }) => {
});

async function assertQuickAction(row: locator, form: object, sciper?: string) {
const user = sciper === SCIPER_USER ? User : sciper === SCIPER_ADMIN ? Admin : undefined;
const user = sciper === SCIPER_USER ? User : (sciper === SCIPER_ADMIN ? Admin : undefined); // eslint-disable-line
const quickAction = row.getByTestId('quickAction');
switch (form.Status) {
case 1:
Expand Down

0 comments on commit d28bec3

Please sign in to comment.