From 63a678f13a94300e4743c836727a6a030c1f9f3c Mon Sep 17 00:00:00 2001 From: Ryan Rosello Date: Wed, 3 Jul 2024 21:51:48 +1000 Subject: [PATCH] chore(trace-viewer) update "should open two trace files" test --- tests/library/trace-viewer.spec.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/library/trace-viewer.spec.ts b/tests/library/trace-viewer.spec.ts index dc9e9facaf..0f7feb365c 100644 --- a/tests/library/trace-viewer.spec.ts +++ b/tests/library/trace-viewer.spec.ts @@ -812,12 +812,12 @@ test('should open two trace files', async ({ context, page, request, server, sho await traceViewer.selectAction('apiRequestContext.get'); await traceViewer.selectAction('apiRequestContext.post'); await expect(traceViewer.actionTitles).toHaveText([ - `apiRequestContext.get`, + `apiRequestContext.get/simple.json`, `page.gotohttp://localhost:${server.PORT}/input/button.html`, - `apiRequestContext.head`, + `apiRequestContext.head/simplezip.json`, `locator.clicklocator('button')`, `locator.clicklocator('button')`, - `apiRequestContext.post`, + `apiRequestContext.post/one-style.css`, ]); await traceViewer.page.locator('text=Metadata').click();