Skip to content

Commit 4aea32f

Browse files
committed
disable e2e tests
1 parent 5c50c0b commit 4aea32f

File tree

2 files changed

+3
-7
lines changed

2 files changed

+3
-7
lines changed

.github/workflows/e2e-tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ jobs:
1919
fail-fast: true
2020
matrix:
2121
node-version: [20, 22, 24]
22-
os: [ubuntu-latest, windows-latest]
22+
os: [ubuntu-latest]
23+
# os: [ubuntu-latest, windows-latest] - Windows tests disbaled (see project https://linear.app/socketdev/project/autofixes-windows-support-fc2f2a45f759)
2324
steps:
2425
- uses: SocketDev/socket-registry/.github/actions/setup-and-install@51be85d39d3b4a42dd9d4712948b9d30a2e04794
2526
with:

src/commands/fix/cmd-fix-e2e.test.mts

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { existsSync, promises as fs } from 'node:fs'
22
import path from 'node:path'
3-
43
import { describe, expect } from 'vitest'
54

65
import { logger } from '@socketsecurity/registry/lib/logger'
@@ -117,11 +116,7 @@ function compareVersions(v1: string, v2: string): number {
117116
* Helper to log command output for debugging.
118117
* Logs stdout and stderr to help diagnose test failures.
119118
*/
120-
function logCommandOutput(
121-
code: number,
122-
stdout: string,
123-
stderr: string,
124-
): void {
119+
function logCommandOutput(code: number, stdout: string, stderr: string): void {
125120
logger.error(`Command failed with code ${code}`)
126121
logger.error('stdout:', stdout)
127122
logger.error('stderr:', stderr)

0 commit comments

Comments
 (0)