TSK-803: Fix load speed (#2728)

Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
Andrey Sobolev
2023-03-13 23:50:10 +07:00
committed by GitHub
parent b6980f307e
commit 9eddd84ada
11 changed files with 111 additions and 21 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ test.describe('project tests', () => {
await page.fill('[placeholder="Issue\\ title"]', 'issue')
await page.click('form button:has-text("Project")')
await page.click(`.selectPopup button:has-text("${prjId}")`)
await page.click('form button:has-text("Save issue")')
await page.click('form button:has-text("Create issue")')
await page.waitForSelector('form.antiCard', { state: 'detached' })
await page.click('.listGrid :has-text("issue")')
+1 -1
View File
@@ -84,7 +84,7 @@ export async function createIssue (page: Page, props: IssueProps): Promise<void>
await page.waitForSelector('span:has-text("Default")')
await page.click('button:has-text("New issue")')
await fillIssueForm(page, props)
await page.click('button:has-text("Save issue")')
await page.click('button:has-text("Create issue")')
await page.waitForSelector('form.antiCard', { state: 'detached' })
}