Skip to content

skipping brain in tumor test due to dev env only weirdness #2405

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 1 commit into
base: develop
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions playwright-e2e/tests/brain/brain-regression-test.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,9 @@ test('Brain statics @dss @brain', async ({ page }) => {
await page.getByRole('img', { name: 'The Angiosarcoma Project data release diagram' }).click();
});

//Skipping due to the Brain (Dev ENV only!) bug that makes registration impossible since register modal does not appear, only login modal
//Above is noted by PEPPER-177
//Brain Dev also seems to have the previous frontend version - there's mention of Brain Cancer Project instead of Brain Tumor Project
test.fixme('Brain enroll kid on their behalf @dss @brain', async ({ page }) => {
test.slow();
await page.goto(BRAIN_BASE_URL!);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ import { StudyName } from 'dsm/navigation';
*/
test.describe.serial('Tumor Collaborator Sample ID', () => {
// Some studies are excluded due to lack of the suitable paricipants
const studies: StudyName[] = [StudyName.OSTEO2, StudyName.PANCAN, StudyName.MBC, StudyName.BRAIN];
const studies: StudyName[] = [StudyName.OSTEO2, StudyName.PANCAN, StudyName.MBC];

for (const study of studies) {
test(`Search by tumor sample id for non-legacy participant @dsm @${study}`, async ({ page, request }) => {
Expand Down