mirror of
				https://github.com/inventree/InvenTree.git
				synced 2025-10-31 05:05:42 +00:00 
			
		
		
		
	Bulk add test results (#10146)
* Bulk creation of test results - Add BulkCreateMixin class - Add frontend support * Refactor test result serializer - Allow lookup by template name * Updated unit test * Add unit tests * Add row actions * Docs * Fix failing tests * Bump API version * Fix playwright tests
This commit is contained in:
		| @@ -79,11 +79,14 @@ test('Build Order - Basic Tests', async ({ browser }) => { | ||||
|   await loadTab(page, 'Test Results'); | ||||
|   await page.getByText('Quantity: 25').waitFor(); | ||||
|   await page.getByText('Continuity Checks').waitFor(); | ||||
|   await page | ||||
|  | ||||
|   const button = await page | ||||
|     .getByRole('row', { name: 'Quantity: 16' }) | ||||
|     .getByRole('button') | ||||
|     .hover(); | ||||
|   await page.getByText('Add Test Result').waitFor(); | ||||
|     .getByLabel('add-test-result'); | ||||
|  | ||||
|   await button.click(); | ||||
|   await page.getByRole('textbox', { name: 'text-field-value' }).waitFor(); | ||||
|   await page.getByRole('button', { name: 'Cancel' }).click(); | ||||
|  | ||||
|   // Click through to the "parent" build | ||||
|   await loadTab(page, 'Build Details'); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user