43 lines
1.2 KiB
TypeScript
43 lines
1.2 KiB
TypeScript
import { defineConfig, devices } from '@playwright/test';
|
|
import { nxE2EPreset } from '@nx/playwright/preset';
|
|
import { workspaceRoot } from '@nx/devkit';
|
|
import { join } from 'path';
|
|
|
|
// For CI, you may want to set BASE_URL to the deployed application.
|
|
const baseURL = process.env['BASE_URL'] || 'http://localhost:4321';
|
|
const reportDir = join(
|
|
workspaceRoot,
|
|
'dist',
|
|
'astro-docs',
|
|
'playwright-report'
|
|
);
|
|
|
|
export default defineConfig({
|
|
...nxE2EPreset(__filename, { testDir: './e2e' }),
|
|
reporter: [
|
|
['list', { printSteps: true }],
|
|
['html', { outputFolder: reportDir, open: 'never' }],
|
|
[
|
|
'junit',
|
|
{
|
|
// JUnit only respects the outputFile option, and not outputDir or outputFolder
|
|
outputFile: `${reportDir}/test-e2e-nx-cloud.xml`,
|
|
},
|
|
],
|
|
],
|
|
/* Global setup to wait for server */
|
|
globalSetup: require.resolve('./global-setup.e2e.ts'),
|
|
/* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */
|
|
use: {
|
|
baseURL,
|
|
/* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */
|
|
trace: 'on-first-retry',
|
|
},
|
|
projects: [
|
|
{
|
|
name: 'chromium',
|
|
use: { ...devices['Desktop Chrome'] },
|
|
},
|
|
],
|
|
});
|