aaddrick--claude-desktop-debian
3e076d4dd9
Deploy Worker / deploy (push) Failing after 1s
Shellcheck / Check shell scripts (push) Failing after 1s
CI / Build Packages (amd64 - appimage) (push) Has been skipped
CI / Build Packages (amd64 - deb) (push) Has been skipped
CI / Build Packages (amd64 - rpm) (push) Has been skipped
CI / Build Packages (arm64 - appimage) (push) Has been skipped
CI / Build Packages (arm64 - deb) (push) Has been skipped
CI / Test Flags Parsing (push) Failing after 1s
BATS Tests / BATS unit tests (push) Failing after 1s
CI / Build Packages (arm64 - rpm) (push) Has been skipped
CI / Test Build Artifacts (amd64) (push) Has been skipped
CI / Test Build Artifacts (arm64) (push) Has been skipped
CI / Update APT Repository (push) Has been cancelled
CI / Mirror Official .deb to Release (push) Has been cancelled
CI / Update DNF Repository (push) Has been cancelled
CI / Update AUR Package (push) Has been cancelled
CI / Create Release (push) Has been cancelled
26 行
654 B
TypeScript
26 行
654 B
TypeScript
/// <reference types="node" />
|
|
import { defineConfig } from '@playwright/test';
|
|
|
|
const resultsDir = process.env.RESULTS_DIR ?? './results/local';
|
|
|
|
export default defineConfig({
|
|
testDir: './src/runners',
|
|
testMatch: /.*\.spec\.ts$/,
|
|
fullyParallel: false,
|
|
workers: 1,
|
|
retries: process.env.CI ? 1 : 0,
|
|
forbidOnly: !!process.env.CI,
|
|
timeout: 60_000,
|
|
expect: { timeout: 10_000 },
|
|
outputDir: `${resultsDir}/test-output`,
|
|
reporter: [
|
|
['list'],
|
|
['junit', { outputFile: `${resultsDir}/junit.xml` }],
|
|
['html', { outputFolder: `${resultsDir}/html`, open: 'never' }],
|
|
],
|
|
use: {
|
|
trace: 'retain-on-failure',
|
|
screenshot: 'only-on-failure',
|
|
},
|
|
});
|