Skip to content

Commit

Permalink
update leaf request url
Browse files Browse the repository at this point in the history
  • Loading branch information
nk2136 committed Nov 26, 2024
1 parent 368afdb commit f08fb96
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions end2end/tests/userAccessGroup.spec.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { test, expect } from '@playwright/test';

test('Validate group creation and an employee addition', async ({ page }) => {
await page.goto('https://host.docker.internal/LEAF_Request_Portal/admin/?a=mod_groups#/');
test.only('Validate group creation and an employee addition', async ({ page }) => {
await page.goto('https://host.docker.internal/Test_Request_Portal/admin/?a=mod_groups');

// Create a new group
const createGroupButton = page.getByRole('button', { name: '+ Create group' });
Expand Down Expand Up @@ -40,7 +40,7 @@ test('Validate group creation and an employee addition', async ({ page }) => {
});

test('Validate group import from another leaf site', async ({ page }) => {
await page.goto('https://host.docker.internal/LEAF_Request_Portal/admin/?a=mod_groups#/');
await page.goto('https://host.docker.internal/Test_Request_Portal/admin/?a=mod_groups');

const importGroupButton = page.getByRole('button', { name: 'Import group' });
await importGroupButton.click();
Expand Down

0 comments on commit f08fb96

Please sign in to comment.