Remove unneeded timeouts

This commit is contained in:
Jose Olarte III
2024-08-28 16:24:50 +08:00
parent 0e4e6c96e2
commit 2e2705eae8
3 changed files with 0 additions and 10 deletions

View File

@@ -45,9 +45,6 @@ test('Create 10 new projects', async ({ page }) => {
// Import user 00
await importUser(page, '00');
// Pause a bit
await page.waitForTimeout(3000); // I have to wait, otherwise the (+) button to add a new project doesn't appear
// Create new projects
for (let i = 0; i < projectCount; i++) {
await page.goto('./projects');
@@ -59,7 +56,6 @@ test('Create 10 new projects', async ({ page }) => {
await page.getByPlaceholder('Start Date').fill('2025-12-01');
await page.getByPlaceholder('Start Time').fill('12:00');
await page.getByRole('button', { name: 'Save Project' }).click();
await page.waitForTimeout(1000); // Compensate for delay in loading Idea Name heading
// Check texts
await expect(page.locator('h2')).toContainText(finalTitles[i]);