Skip to content

Commit

Permalink
remove unused decorators from FormLayoutsPage class
Browse files Browse the repository at this point in the history
  • Loading branch information
tryb3l committed Nov 3, 2024
1 parent 2be926e commit 7260519
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions e2e/pages/form-layouts.page.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import { Page } from '@playwright/test';
import { InlineFormComponent } from '@components/forms/inline-form.component';
import { GridFormComponent } from '@components/forms/grid-form.component';
import { ActionLogger } from '@utils/action.logger.decorator';
import { ErrorHandler } from '@utils/error-handler.decorator';

class FormLayoutsPage {
constructor(
Expand All @@ -11,7 +9,6 @@ class FormLayoutsPage {
private gridForm: GridFormComponent = new GridFormComponent(page)
) {}

@ActionLogger('Submit Inline Form', 'info')
async submitInlineFormWithOptions(
name: string,
email: string,
Expand All @@ -25,7 +22,6 @@ class FormLayoutsPage {
await this.inlineForm.submit();
}

@ActionLogger('Submit Grid Form', 'info')
async submitGridFormWithCredentials(
email: string,
password: string,
Expand Down

0 comments on commit 7260519

Please sign in to comment.