Skip to content

Commit

Permalink
test: Remove exclamation mark from string, as no longer present in lo…
Browse files Browse the repository at this point in the history
…ader
  • Loading branch information
WhyAsh5114 committed Sep 17, 2024
1 parent d12290a commit 062be27
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/models/mesocycles.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ test('start and stop a mesocycle', async ({ page }) => {
});
await expect(page.getByRole('tabpanel')).toContainText(`MesoName ${new Date().toLocaleDateString()} Active`);
await page.getByRole('link', { name: 'Mesocycles' }).click();
await expect(page.getByRole('main')).toContainText("Active MesoName Active All MesoName Active That's all!");
await expect(page.getByRole('main')).toContainText("Active MesoName Active All MesoName Active That's all");
await page.getByRole('link', { name: 'MesoName Active' }).first().click();
await page.getByRole('button', { name: 'Stop mesocycle' }).click();
await expect(page.getByRole('status').filter({ hasText: 'Mesocycle stopped successfully' })).toBeVisible({
Expand All @@ -136,7 +136,7 @@ test('start and stop a mesocycle', async ({ page }) => {
`MesoName ${new Date().toLocaleDateString()} to ${new Date().toLocaleDateString()} Completed`
);
await page.getByRole('link', { name: 'Mesocycles' }).click();
await expect(page.getByRole('main')).toContainText("Active No active mesocycle All MesoName Completed That's all!");
await expect(page.getByRole('main')).toContainText("Active No active mesocycle All MesoName Completed That's all");
});

test("edit mesocycle's exercise split", async ({ page }) => {
Expand Down

0 comments on commit 062be27

Please sign in to comment.