diff --git a/frontend/packages/data-portal/e2e/pagination.test.ts b/frontend/packages/data-portal/e2e/pagination.test.ts index 4253950d0..26c72dfa2 100644 --- a/frontend/packages/data-portal/e2e/pagination.test.ts +++ b/frontend/packages/data-portal/e2e/pagination.test.ts @@ -1,3 +1,8 @@ +/* + * NOTE: This file does not use the preferred page object pattern. + * This is because we did not have time to refactor. + * Please do not use this file as an example of how to write tests. + */ import { TableValidatorOptions } from 'e2e/pageObjects/filters/types' import { MAX_PER_PAGE } from 'app/constants/pagination' diff --git a/frontend/packages/data-portal/e2e/pagination/testPagination.ts b/frontend/packages/data-portal/e2e/pagination/testPagination.ts index 55b9e3ac6..63f403d60 100644 --- a/frontend/packages/data-portal/e2e/pagination/testPagination.ts +++ b/frontend/packages/data-portal/e2e/pagination/testPagination.ts @@ -1,3 +1,8 @@ +/* + * NOTE: This file does not use the preferred page object pattern. + * This is because we did not have time to refactor. + * Please do not use this file as an example of how to write tests. + */ import { expect, Page, test } from '@playwright/test' import { getApolloClient } from 'e2e/apollo' import { E2E_CONFIG } from 'e2e/constants'