From 7f02bbbd51b961a593a043621a50dada3bdcde7b Mon Sep 17 00:00:00 2001 From: Simon Knott Date: Fri, 6 Sep 2024 13:16:57 +0200 Subject: [PATCH] add test --- tests/debug-tests.spec.ts | 43 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/tests/debug-tests.spec.ts b/tests/debug-tests.spec.ts index c8adbe17a..dad89026c 100644 --- a/tests/debug-tests.spec.ts +++ b/tests/debug-tests.spec.ts @@ -180,6 +180,49 @@ test('should end test run when stopping the debugging', async ({ activate }, tes testRun.token.source.cancel(); }); +test('should end test run when stopping the debugging during config parsing', async ({ activate }) => { + const { vscode, testController } = await activate({ + 'package.json': JSON.stringify({ type: 'module' }), + 'playwright.config.js': ` + // Simulate breakpoint via stalling. + async function stall() { + console.log('READY TO BREAK'); + await new Promise(() => {}); + } + + process.env.STALL_CONFIG === '1' && await stall(); + export default { testDir: 'tests' } + `, + 'tests/test.spec.ts': ` + import { test } from '@playwright/test'; + test('should fail', async () => {}); + `, + }, { env: { STALL_CONFIG: '0' } }); + + await testController.expandTestItems(/test.spec/); + const testItems = testController.findTestItems(/fail/); + + const configuration = vscode.workspace.getConfiguration('playwright'); + configuration.update('env', { STALL_CONFIG: '1' }); + + const profile = testController.debugProfile(); + const testRunPromise = new Promise(f => testController.onDidCreateTestRun(f)); + profile.run(testItems); + const testRun = await testRunPromise; + await expect.poll(() => vscode.debug.output).toContain('READY TO BREAK'); + + const endPromise = new Promise(f => testRun.onDidEnd(f)); + vscode.debug.stopDebugging(); + await endPromise; + + expect(testRun.renderLog({ messages: true })).toBe(` + tests > test.spec.ts > should fail [2:0] + enqueued + `); + + testRun.token.source.cancel(); +}); + test('should pass all args as string[] when debugging', async ({ activate }) => { test.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/30829' }); const { vscode, testController } = await activate({