Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
soundofspace committed Oct 8, 2024
1 parent 36d95e1 commit c05c5d1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions agent/main/test/Worker.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ describe('Worker test', () => {
});

// eslint-disable-next-line jest/no-focused-tests
it('should report network activity', async () => {
it.only('should report network activity', async () => {
const [workerEvent] = await Promise.all([
page.waitOn('worker'),
page.goto(`${server.baseUrl}/worker/worker.html`),
Expand All @@ -151,7 +151,8 @@ describe('Worker test', () => {
expect(request.resource.url.href).toBe(url);
});

it('should report network activity on worker creation', async () => {
// eslint-disable-next-line jest/no-focused-tests
it.only('should report network activity on worker creation', async () => {
// Chromium needs waitForDebugger enabled for this one.
await page.goto(server.emptyPage);
const url = `${server.baseUrl}/one-style.css`;
Expand Down

0 comments on commit c05c5d1

Please sign in to comment.