Skip to content

Commit

Permalink
automatic tests fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
QuitoTactico committed Nov 13, 2024
1 parent 6db4af4 commit d1c5d54
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion testsE2E/tests/learningRoute.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ test.describe('learning route', () => {
await page.getByLabel('Time per Week (Minutes):').fill('600');
await page.getByLabel('Time per Session (Minutes):').click();
await page.getByLabel('Time per Session (Minutes):').fill('600');
await page.getByRole('button', { name: 'Save Preferences' }).click();
await page.getByRole('button', { name: 'Update Preferences' }).click();

await page.getByRole('link', { name: 'Target Skills ' }).click();
await page.getByRole('combobox').getByRole('list').click();
Expand Down
2 changes: 1 addition & 1 deletion testsE2E/tests/profile.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ test.describe('profileSetup', () => {
await page.getByLabel('Time per Session (Minutes):').click();
await page.getByLabel('Time per Session (Minutes):').fill(Math.floor(Math.random() * 600).toString());

await page.getByRole('button', { name: 'Save Preferences' }).click();
await page.getByRole('button', { name: 'Update Preferences' }).click();
});

test('update info', async ({ page }) => {
Expand Down

0 comments on commit d1c5d54

Please sign in to comment.